Skip to content

Commit

Permalink
Update metaphor/oracle/extractor.py
Browse files Browse the repository at this point in the history
Co-authored-by: Tsung-Ju Lii <[email protected]>
  • Loading branch information
elic-eon and usefulalgorithm authored Jul 31, 2024
1 parent 95641b5 commit b1b832e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metaphor/oracle/extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async def extract(self) -> Collection[ENTITY_TYPES]:
inspector = OracleExtractor.get_inspector(self._get_sqlalchemy_url())

system_users = self.get_system_users(inspector)
system_users.extend(["RDSADMIN".lower()])
system_users.extend([RDSADMIN_USER.lower()])

for schema in self._get_schemas(inspector):
if schema.lower() in system_users:
Expand Down

0 comments on commit b1b832e

Please sign in to comment.