From: Sage Weil Date: Fri, 23 Aug 2013 05:20:26 +0000 (-0700) Subject: queue: fetch origin, not branch X-Git-Tag: 1.1.0~1944 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=22fc733770a2d36310122a1b3ce2bed5dcbb0918;p=teuthology.git queue: fetch origin, not branch Signed-off-by: Sage Weil --- diff --git a/teuthology/queue.py b/teuthology/queue.py index 220420ce8..d35b574f0 100644 --- a/teuthology/queue.py +++ b/teuthology/queue.py @@ -107,7 +107,7 @@ describe. One job is run at a time. subprocess.Popen(('./bootstrap'), cwd=teuth_path, env=env) else: log.info("Pulling %s from upstream", teuthology_branch) - subprocess.Popen(('git', 'fetch', teuthology_branch), cwd=teuth_path) + subprocess.Popen(('git', 'fetch', '-p', 'origin'), cwd=teuth_path) subprocess.Popen(('git', 'reset', '--hard', 'origin/%s' % teuthology_branch), cwd=teuth_path)