From: Brett Smith Date: Mon, 26 May 2014 15:36:11 +0000 (-0400) Subject: 2863: Remove debugging print from Python KeepClient. X-Git-Tag: 1.1.0~2603^2~3^2 X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/8633979010e2f15b3b88cab2a610019a336745c7 2863: Remove debugging print from Python KeepClient. Other tools like crunch-job parse the output of tools like arv-get and arv-put. Right now crunch-job is saving this debug output in the log attribute of running jobs, which confuses several other tools like Workbench. Closes #2863. --- diff --git a/sdk/python/arvados/keep.py b/sdk/python/arvados/keep.py index e414d267a1..fcb59ec805 100644 --- a/sdk/python/arvados/keep.py +++ b/sdk/python/arvados/keep.py @@ -193,8 +193,6 @@ class KeepClient(object): # selected server. probe = int(seed[0:8], 16) % len(pool) - print seed[0:8], int(seed[0:8], 16), len(pool), probe - # Append the selected server to the probe sequence and remove it # from the pool. pseq += [pool[probe]]