Skip to content

Commit

Permalink
Use latest version of topaz when staring the container
Browse files Browse the repository at this point in the history
  • Loading branch information
BogdanIrimie committed Feb 21, 2024
1 parent 54c913d commit d7d8a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/utils/Topaz.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public void stop() throws IOException, InterruptedException {
}

private void start() throws IOException, InterruptedException {
ProcessBuilder pb = new ProcessBuilder("topaz","start", "--container-version", "model-v2.3");
ProcessBuilder pb = new ProcessBuilder("topaz","start");
pb.inheritIO();
Process process = pb.start();
process.waitFor();
Expand Down

0 comments on commit d7d8a9c

Please sign in to comment.