fix
Some checks reported errors
BlockStorage/repertory/pipeline/head Build queued...
BlockStorage/repertory_mac/pipeline/head Something is wrong with the build of this commit

This commit is contained in:
2025-08-06 15:11:08 -05:00
parent b8daf9b9b7
commit 6bc11ec727

View File

@@ -54,31 +54,31 @@ namespace repertory {
struct local_s3 final { struct local_s3 final {
static constexpr provider_type type{provider_type::s3}; static constexpr provider_type type{provider_type::s3};
static constexpr provider_type type2{provider_type::s3}; static constexpr provider_type type2{provider_type::s3};
static constexpr std::uint16_t remote_port{40000U}; static constexpr std::uint16_t remote_port{41000U};
}; };
struct local_sia final { struct local_sia final {
static constexpr provider_type type{provider_type::sia}; static constexpr provider_type type{provider_type::sia};
static constexpr provider_type type2{provider_type::sia}; static constexpr provider_type type2{provider_type::sia};
static constexpr std::uint16_t remote_port{40001U}; static constexpr std::uint16_t remote_port{41001U};
}; };
struct remote_s3 final { struct remote_s3 final {
static constexpr provider_type type{provider_type::remote}; static constexpr provider_type type{provider_type::remote};
static constexpr provider_type type2{provider_type::s3}; static constexpr provider_type type2{provider_type::s3};
static constexpr std::uint16_t remote_port{40000U}; static constexpr std::uint16_t remote_port{41000U};
}; };
struct remote_sia final { struct remote_sia final {
static constexpr provider_type type{provider_type::remote}; static constexpr provider_type type{provider_type::remote};
static constexpr provider_type type2{provider_type::sia}; static constexpr provider_type type2{provider_type::sia};
static constexpr std::uint16_t remote_port{40001U}; static constexpr std::uint16_t remote_port{41001U};
}; };
struct remote_linux_to_winfsp final { struct remote_linux_to_winfsp final {
static constexpr provider_type type{provider_type::remote}; static constexpr provider_type type{provider_type::remote};
static constexpr provider_type type2{provider_type::unknown}; static constexpr provider_type type2{provider_type::unknown};
static constexpr std::uint16_t remote_port{40002U}; static constexpr std::uint16_t remote_port{41002U};
}; };
template <typename provider_t> class fuse_test : public ::testing::Test { template <typename provider_t> class fuse_test : public ::testing::Test {