18216: Move keepstore into arvados-server binary.
[arvados.git] / sdk / python / tests / run_test_server.py
index c022e6c874d23f099406b626374e7cfe5d0951c0..6d2643a967ef70374f2ff222c19bb67917ba5a0e 100644 (file)
@@ -473,7 +473,7 @@ def _start_keep(n, blob_signing=False):
     confdata['Clusters']['zzzzz']['Collections']['BlobSigning'] = blob_signing
     with open(conf, 'w') as f:
         yaml.safe_dump(confdata, f)
-    keep_cmd = ["keepstore", "-config", conf]
+    keep_cmd = ["arvados-server", "keepstore", "-config", conf]
 
     with open(_logfilename('keep{}'.format(n)), WRITE_MODE) as logf:
         with open('/dev/null') as _stdin: