summaryrefslogtreecommitdiff
path: root/zuul/driver/git/gitsource.py
diff options
context:
space:
mode:
Diffstat (limited to 'zuul/driver/git/gitsource.py')
-rw-r--r--zuul/driver/git/gitsource.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/zuul/driver/git/gitsource.py b/zuul/driver/git/gitsource.py
index 78ae04ee7..a7d42be12 100644
--- a/zuul/driver/git/gitsource.py
+++ b/zuul/driver/git/gitsource.py
@@ -38,6 +38,15 @@ class GitSource(BaseSource):
def getChange(self, event, refresh=False):
return self.connection.getChange(event, refresh)
+ def getChangeByURL(self, url):
+ return None
+
+ def getChangesDependingOn(self, change, projects):
+ return []
+
+ def getCachedChanges(self):
+ return []
+
def getProject(self, name):
p = self.connection.getProject(name)
if not p: