We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43a2471 commit 5f8a91bCopy full SHA for 5f8a91b
manager/manager.py
@@ -84,7 +84,7 @@ def update_trueskill(game_id):
84
classpath = "{0}/JSkills_0.9.0.jar:{0}".format(
85
os.path.join(os.path.dirname(os.path.realpath(__file__)),
86
"jskills"))
87
- tsupdater = Popen(["java", "-cp", classpath, "TSUpdate"],
+ tsupdater = Popen(["java", "-Xmx100m", "-cp", classpath, "TSUpdate"],
88
stdin=PIPE, stdout=PIPE)
89
for player in players:
90
tsupdater.stdin.write("P %s %d %f %f\n" % (player.name, player.rank,
0 commit comments