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. --- .../buildtool/execution_api/bazel/bazel_execution_client.test.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'test/buildtool/execution_api/bazel/bazel_execution_client.test.cpp') diff --git a/test/buildtool/execution_api/bazel/bazel_execution_client.test.cpp b/test/buildtool/execution_api/bazel/bazel_execution_client.test.cpp index dce90f48..57967957 100755 --- a/test/buildtool/execution_api/bazel/bazel_execution_client.test.cpp +++ b/test/buildtool/execution_api/bazel/bazel_execution_client.test.cpp @@ -37,10 +37,12 @@ TEST_CASE("Bazel internals: Execution Client", "[execution_api]") { REQUIRE(remote_config); REQUIRE(remote_config->remote_address); + RetryConfig retry_config{}; // default retry config + BazelExecutionClient execution_client(remote_config->remote_address->host, remote_config->remote_address->port, &*auth_config, - &RetryConfig::Instance()); + &retry_config); ExecutionConfiguration config; config.skip_cache_lookup = false; @@ -113,10 +115,12 @@ TEST_CASE("Bazel internals: Execution Client using env variables", REQUIRE(remote_config); REQUIRE(remote_config->remote_address); + RetryConfig retry_config{}; // default retry config + BazelExecutionClient execution_client(remote_config->remote_address->host, remote_config->remote_address->port, &*auth_config, - &RetryConfig::Instance()); + &retry_config); ExecutionConfiguration config; config.skip_cache_lookup = false; -- cgit v1.2.3