From 22fc733770a2d36310122a1b3ce2bed5dcbb0918 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 22 Aug 2013 22:20:26 -0700 Subject: [PATCH] queue: fetch origin, not branch Signed-off-by: Sage Weil --- teuthology/queue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/queue.py b/teuthology/queue.py index 220420ce82663..d35b574f0e19a 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) -- 2.39.5