diff options
author | Tristan Cacqueray <tdecacqu@redhat.com> | 2019-02-18 01:46:36 +0000 |
---|---|---|
committer | Tristan Cacqueray <tdecacqu@redhat.com> | 2019-02-18 01:46:46 +0000 |
commit | 820a035e44ff32531665e510140ebe22cd5b1dca (patch) | |
tree | 3a0345e36c05b6e27b75310eb25c2084e053c21b /zuul/driver/git | |
parent | 275cbc92e0239602a944338f383f961fba4e2e31 (diff) | |
download | zuul-820a035e44ff32531665e510140ebe22cd5b1dca.tar.gz |
connections: remove unused getSchema procedure
This change removes unused code.
Change-Id: Ic2fcf447b9a2e5c2e97749a5d1630e0ac91dd318
Diffstat (limited to 'zuul/driver/git')
-rw-r--r-- | zuul/driver/git/gitconnection.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/zuul/driver/git/gitconnection.py b/zuul/driver/git/gitconnection.py index 36993fc98..f6e605a81 100644 --- a/zuul/driver/git/gitconnection.py +++ b/zuul/driver/git/gitconnection.py @@ -20,8 +20,6 @@ import logging import urllib import threading -import voluptuous as v - from zuul.connection import BaseConnection from zuul.driver.git.gitmodel import GitTriggerEvent, EMPTY_GIT_REF from zuul.model import Ref, Branch @@ -252,8 +250,3 @@ class GitConnection(BaseConnection): self.baseurl, self.poll_timeout) self.watcher_thread.start() - - -def getSchema(): - git_connection = v.Any(str, v.Schema(dict)) - return git_connection |