Skip to content

Commit

Permalink
Remove retryAttempts override for DockerProxyExtension (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
mswintermeyer authored Mar 27, 2023
1 parent ca02d49 commit 8cf47f5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 5 additions & 0 deletions changelog/@unreleased/pr-564.v2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type: improvement
improvement:
description: Remove retryAttempts override for DockerProxyExtension
links:
- https://github.com/palantir/docker-proxy-rule/pull/564
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,7 @@ public final class DockerProxyExtension extends DockerProxyManager<DockerCompose
DockerProxyExtension(
Function<DockerExecutable, DockerContainerInfo> dockerContainerInfoCreator, Class<?> classToLogFor) {
super(
customizer -> customizer
.apply(DockerComposeExtension.builder().retryAttempts(0))
.build(),
customizer -> customizer.apply(DockerComposeExtension.builder()).build(),
dockerContainerInfoCreator,
classToLogFor);
}
Expand Down

0 comments on commit 8cf47f5

Please sign in to comment.