Skip to content

Commit

Permalink
chore: add back db path logging when we know it is a local path
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers committed Aug 26, 2023
1 parent a4659b7 commit 8f62a79
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ def check(self, logger: AirbyteLogger, config: Mapping[str, Any]) -> AirbyteConn
api_key = config.get("api_key")

if path.startswith("/local"):
logger.info(f"Using DuckDB file at {path}")
os.makedirs(os.path.dirname(path), exist_ok=True)

if "api_key" in config:
Expand Down

0 comments on commit 8f62a79

Please sign in to comment.