Skip to content

Commit

Permalink
Chore: Fix logger warning small typo (#3489)
Browse files Browse the repository at this point in the history
  • Loading branch information
themisvaltinos authored Dec 9, 2024
1 parent 2a9871a commit c43266a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sqlmesh/core/state_sync/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def cleanup_expired_views(
if console:
console.update_cleanup_progress(schema.sql(dialect=adapter.dialect))
except Exception as e:
logger.warning("Falied to drop the expired environment schema '%s': %s", schema, e)
logger.warning("Failed to drop the expired environment schema '%s': %s", schema, e)
for expired_view in {
snapshot.qualified_view_name.for_environment(
environment.naming_info, dialect=adapter.dialect
Expand All @@ -58,7 +58,7 @@ def cleanup_expired_views(
if console:
console.update_cleanup_progress(expired_view)
except Exception as e:
logger.warning("Falied to drop the expired environment view '%s': %s", expired_view, e)
logger.warning("Failed to drop the expired environment view '%s': %s", expired_view, e)


def transactional() -> t.Callable[[t.Callable], t.Callable]:
Expand Down

0 comments on commit c43266a

Please sign in to comment.