File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
src/main/java/xyz/fabiano/spring/localstack/legacy Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 44 <groupId >xyz.fabiano</groupId >
55 <artifactId >spring-localstack</artifactId >
66 <packaging >jar</packaging >
7- <version >0.0.10-SNAPSHOT</version >
7+ <version >0.0.10.dlocal -SNAPSHOT</version >
88 <name >Spring localstack Utilities</name >
99
1010 <description >Java and Spring utilities for the Localstack platform.</description >
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public class LocalstackDocker {
2626
2727 private static final Logger LOG = Logger .getLogger (LocalstackDocker .class .getName ());
2828
29- private static final String PORT_CONFIG_FILENAME = "/opt/code/localstack/.venv/lib/python2.7 /site-packages/localstack_client/config.py" ;
29+ private static final String PORT_CONFIG_FILENAME = "/opt/code/localstack/.venv/lib/python3.6 /site-packages/localstack_client/config.py" ;
3030
3131 private static final Pattern READY_TOKEN = Pattern .compile ("Ready\\ ." );
3232
Original file line number Diff line number Diff line change 55public class PullCommand extends Command {
66
77 private static final int PULL_COMMAND_TIMEOUT_MINUTES = 10 ;
8- private static final String LATEST_TAG = "latest" ;
98
109 private final String imageName ;
1110
@@ -15,7 +14,6 @@ public PullCommand(String imageName) {
1514
1615
1716 public void execute () {
18- String image = String .format ("%s:%s" , imageName , LATEST_TAG );
19- dockerExe .execute (Arrays .asList ("pull" , image ), PULL_COMMAND_TIMEOUT_MINUTES );
17+ dockerExe .execute (Arrays .asList ("pull" , imageName ), PULL_COMMAND_TIMEOUT_MINUTES );
2018 }
2119}
You can’t perform that action at this time.
0 commit comments