We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e025836 commit 1b08f7eCopy full SHA for 1b08f7e
1 file changed
JShellWrapper/src/main/java/Config.java
@@ -2,7 +2,7 @@
2
public record Config(int evalTimeoutSeconds) {
3
public static Config load() {
4
return new Config(
5
- Integer.parseInt(System.getProperty("evalTimeoutSeconds"))
+ Integer.parseInt(System.getenv("evalTimeoutSeconds"))
6
);
7
}
8
0 commit comments