2863: Remove debugging print from Python KeepClient.
authorBrett Smith <brett@curoverse.com>
Mon, 26 May 2014 15:36:11 +0000 (11:36 -0400)
committerBrett Smith <brett@curoverse.com>
Mon, 26 May 2014 15:36:23 +0000 (11:36 -0400)
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.

sdk/python/arvados/keep.py

index e414d267a1347a51c9ae48354082e14bf48da29d..fcb59ec805680167a9de22caf4d6dc27d30caa92 100644 (file)
@@ -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]]