From 312df9a7e87e00344516ff9ba390958bc993fecb Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Tue, 27 Aug 2013 17:17:02 -0700 Subject: [PATCH] Fix preprocessing for ref-updated events The conditional that did a 'git remote update' for ref-updated events (which otherwise don't affect the Merger) was wrong. Change-Id: Icb2596df023279442613e10e13104a3621d867d9 --- zuul/scheduler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zuul/scheduler.py b/zuul/scheduler.py index 6a6c5d1ce1..8f909ebf1f 100644 --- a/zuul/scheduler.py +++ b/zuul/scheduler.py @@ -563,7 +563,7 @@ class Scheduler(threading.Thread): return # Preprocessing for ref-update events - if hasattr(event, 'refspec'): + if event.ref: # Make sure the local git repo is up-to-date with the remote one. # We better have the new ref before enqueuing the changes. # This is done before enqueuing the changes to avoid calling an