Skip to content

Commit

Permalink
handle infinity values
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed Mar 16, 2024
1 parent 61661f1 commit 7bd2514
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/test.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

#curl localhost:5600 --data-binary "@/datadrive/odota-parser/7355186741_1742953546.dem"
#curl localhost:5600 --data-binary "@/datadrive/odota-parser/7437280975_580771917.dem"
#curl localhost:5600 --data-binary "@/datadrive/odota-parser/6298221747_1156784242.dem"

curl localhost:5600/blob?replay_url=http://replay223.valve.net/570/1416146420_785306176.dem.bz2
2 changes: 2 additions & 0 deletions src/main/java/opendota/Parse.java
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,8 @@ public void output(Entry e) {
}
} catch (IOException ex) {
// System.err.println(ex);
} catch (IllegalArgumentException iex) {
System.err.println(iex);
}
}

Expand Down

0 comments on commit 7bd2514

Please sign in to comment.