- filter out non-oracle URLs

Change-Id: I475f744f8801bc923d738e466d208d662e707413
(cherry picked from commit 97e455f21b)
This commit is contained in:
Mike Bayer
2017-08-21 12:08:01 -04:00
parent 42f11fe80b
commit ecf38bf712
+2
View File
@@ -291,6 +291,8 @@ def reap_oracle_dbs(idents_file):
urls[db_url].append(db_name)
for url in urls:
if not url.startswith("oracle"):
continue
idents = urls[url]
log.info("db reaper connecting to %r", url)
eng = create_engine(url)