From c8394c2ffc3688356cf985d46e8ce56d72050f6a Mon Sep 17 00:00:00 2001 From: Paul Cristian Sarbu Date: Wed, 17 Jul 2024 16:14:12 +0200 Subject: Remove the RetryConfig singleton ...and replace it with instances created early via a builder pattern. --- test/buildtool/execution_api/bazel/bazel_network.test.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'test/buildtool/execution_api/bazel/bazel_network.test.cpp') diff --git a/test/buildtool/execution_api/bazel/bazel_network.test.cpp b/test/buildtool/execution_api/bazel/bazel_network.test.cpp index a4ec44de..d60af9fc 100644 --- a/test/buildtool/execution_api/bazel/bazel_network.test.cpp +++ b/test/buildtool/execution_api/bazel/bazel_network.test.cpp @@ -42,11 +42,13 @@ TEST_CASE("Bazel network: write/read blobs", "[execution_api]") { REQUIRE(remote_config); REQUIRE(remote_config->remote_address); + RetryConfig retry_config{}; // default retry config + auto network = BazelNetwork{instance_name, remote_config->remote_address->host, remote_config->remote_address->port, &*auth_config, - &RetryConfig::Instance(), + &retry_config, {}}; std::string content_foo("foo"); @@ -99,11 +101,13 @@ TEST_CASE("Bazel network: read blobs with unknown size", "[execution_api]") { REQUIRE(remote_config); REQUIRE(remote_config->remote_address); + RetryConfig retry_config{}; // default retry config + auto network = BazelNetwork{instance_name, remote_config->remote_address->host, remote_config->remote_address->port, &*auth_config, - &RetryConfig::Instance(), + &retry_config, {}}; std::string content_foo("foo"); -- cgit v1.2.3