Skip to content

Commit 1b08f7e

Browse files
committed
Wrapper changed evalTimeoutSeconds from property to env
1 parent e025836 commit 1b08f7e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

JShellWrapper/src/main/java/Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
public record Config(int evalTimeoutSeconds) {
33
public static Config load() {
44
return new Config(
5-
Integer.parseInt(System.getProperty("evalTimeoutSeconds"))
5+
Integer.parseInt(System.getenv("evalTimeoutSeconds"))
66
);
77
}
88
}

0 commit comments

Comments
 (0)