From 752e3ff3e827ed6f59114406190d45c43666f9bb Mon Sep 17 00:00:00 2001 From: Eric House Date: Wed, 29 Jan 2020 20:39:14 -0800 Subject: [PATCH] remove use of --slow-robot breaks things for reasons I need to debug later --- xwords4/linux/scripts/discon_ok2.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/xwords4/linux/scripts/discon_ok2.py b/xwords4/linux/scripts/discon_ok2.py index 92797940c..8a0e75061 100755 --- a/xwords4/linux/scripts/discon_ok2.py +++ b/xwords4/linux/scripts/discon_ok2.py @@ -424,7 +424,12 @@ def build_cmds(args): if args.UNDO_PCT > 0: PARAMS += ['--undo-pct', args.UNDO_PCT] PARAMS += [ '--game-dict', DICT] - PARAMS += ['--slow-robot', '1:3', '--skip-confirm'] + # Removing --slow-robot for now. With it on (and + # successfully passed through to the curses client, which + # hasn't always been happening), 20% of games + # stall. PENDING... + # PARAMS += ['--slow-robot', '1:3'] + PARAMS += ['--skip-confirm'] PARAMS += ['--db', DB] PARAMS += ['--drop-nth-packet', g_DROP_N]