Skip to content

Commit

Permalink
Remove unused constant
Browse files Browse the repository at this point in the history
  • Loading branch information
eddumelendez committed Oct 18, 2024
1 parent e219477 commit 29b0c5f
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@
import org.jetbrains.annotations.Nullable;
import org.junit.runner.Description;
import org.junit.runners.model.Statement;
import org.rnorth.ducttape.ratelimits.RateLimiter;
import org.rnorth.ducttape.ratelimits.RateLimiterBuilder;
import org.rnorth.ducttape.unreliables.Unreliables;
import org.slf4j.Logger;
import org.testcontainers.DockerClientFactory;
Expand Down Expand Up @@ -193,12 +191,6 @@ public class GenericContainer<SELF extends GenericContainer<SELF>>

private static final Set<String> AVAILABLE_IMAGE_NAME_CACHE = new HashSet<>();

private static final RateLimiter DOCKER_CLIENT_RATE_LIMITER = RateLimiterBuilder
.newBuilder()
.withRate(1, TimeUnit.SECONDS)
.withConstantThroughput()
.build();

@Nullable
private Map<String, String> tmpFsMapping;

Expand Down

0 comments on commit 29b0c5f

Please sign in to comment.