We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 282dc32 commit d1f82faCopy full SHA for d1f82fa
src/main/java/opendota/Main.java
@@ -69,7 +69,7 @@ public void handle(HttpExchange t) throws IOException {
69
try {
70
Map<String, String> query = splitQuery(t.getRequestURI());
71
URL replayUrl = new URL(query.get("replay_url"));
72
- String cmd = String.format("curl --max-time 120 --fail -L %s | %s | curl -X POST -T - localhost:5600 | node processors/createParsedDataBlob.mjs",
+ String cmd = String.format("curl --max-time 180 --fail -L %s | %s | curl -X POST -T - localhost:5600 | node processors/createParsedDataBlob.mjs",
73
replayUrl,
74
replayUrl.toString().endsWith(".bz2") ? "bunzip2" : "cat"
75
);
0 commit comments