Skip to content

Commit

Permalink
Merge pull request #355 from DeNA/develop
Browse files Browse the repository at this point in the history
(2024/04) merge develop into master
  • Loading branch information
YuriCat committed Apr 26, 2024
2 parents 9d9a459 + 6008b1c commit d46a7cd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions handyrl/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,8 @@ def _send_thread(self):
conn, send_data = self.output_queue.get()
try:
conn.send(send_data)
except TimeoutError:
self.disconnect(conn)
except ConnectionResetError:
self.disconnect(conn)
except BrokenPipeError:
Expand All @@ -215,6 +217,9 @@ def _recv_thread(self):
for conn in conns:
try:
recv_data = conn.recv()
except TimeoutError:
self.disconnect(conn)
continue
except ConnectionResetError:
self.disconnect(conn)
continue
Expand Down
4 changes: 2 additions & 2 deletions handyrl/evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def resolve_agent(model_path):

print('%d process, %d games' % (num_process, num_games))

seed = random.randrange(1e8)
seed = random.randrange(int(1e8))
print('seed = %d' % seed)

opponent = model_paths[1] if len(model_paths) > 1 else 'random'
Expand All @@ -416,7 +416,7 @@ def eval_server_main(args, argv):

print('%d process, %d games' % (num_process, num_games))

seed = random.randrange(1e8)
seed = random.randrange(int(1e8))
print('seed = %d' % seed)

evaluate_mp(env, [None] * len(env.players()), None, env_args, {'default': {}}, num_process, num_games, seed)
Expand Down

0 comments on commit d46a7cd

Please sign in to comment.