Skip to content

Commit

Permalink
refactor: Remove unnecessary print statements in CassandraOnlineStore
Browse files Browse the repository at this point in the history
  • Loading branch information
Bhargav Dodla committed Feb 3, 2025
1 parent ef6f291 commit 51dfd59
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -492,14 +492,12 @@ def update(
tables_to_delete: Tables to delete from the Online Store.
tables_to_keep: Tables to keep in the Online Store.
"""
print("Calling update to create infra..")
project = config.project

for table in tables_to_keep:
self._create_table(config, project, table)
for table in tables_to_delete:
self._drop_table(config, project, table)
print("Done Calling update to create infra..")

def teardown(
self,
Expand Down

0 comments on commit 51dfd59

Please sign in to comment.