Merge PR #39780 into master

* refs/pull/39780/head:
	qa/vstart_runner: dont log "not Ceph bin" msg too often

Reviewed-by: Patrick Donnelly <pdonnell@redhat.com>
Reviewed-by: Xiubo Li <xiubli@redhat.com>
This commit is contained in:
Patrick Donnelly 2021-03-03 10:04:23 -08:00
commit 3107a1f1f8
No known key found for this signature in database
GPG Key ID: 3A2A7E25BEA8AADB

View File

@ -422,10 +422,6 @@ class LocalRemote(object):
local_bin = os.path.join(BIN_PREFIX, args[0])
if os.path.exists(local_bin):
args = [local_bin] + args[1:]
else:
log.debug("'{0}' is not a binary in the Ceph build dir".format(
args[0]
))
log.debug('> ' +
' '.join([str(a.value) if isinstance(a, Raw) else a for a in args]))