Skip to content

Commit

Permalink
change json override strategy (#4396)
Browse files Browse the repository at this point in the history
automatic commit by git-black, original commits:
  74fbaa1
  b2aea11
  • Loading branch information
Nathaniel May authored and iknox-fa committed Feb 8, 2022
1 parent d8ebdc8 commit 6fd8349
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions core/dbt/adapters/base/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,11 +291,7 @@ def _schema_is_cached(self, database: Optional[str], schema: str) -> bool:

if (database, schema) not in self.cache:
fire_event(
CacheMiss(
conn_name=self.nice_connection_name(),
database=database,
schema=schema
)
CacheMiss(conn_name=self.nice_connection_name(), database=database, schema=schema)
)
return False
else:
Expand Down

0 comments on commit 6fd8349

Please sign in to comment.