Skip to content

Commit

Permalink
Updated method for retrieving sentinel table name
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Coetzee <[email protected]>
  • Loading branch information
Pipboyguy committed Jun 8, 2024
1 parent 66d1cc7 commit 21bc285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlt/destinations/impl/lancedb/lancedb_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def dataset_name(self) -> str:

@property
def sentinel_table(self) -> str:
return self.dataset_name or "DltSentinelTable"
return self.make_qualified_table_name("dltSentinelTable")

def make_qualified_table_name(self, table_name: str) -> str:
return (
Expand Down

0 comments on commit 21bc285

Please sign in to comment.