Skip to content

Commit

Permalink
Updated quotation placement to fix TypeError
Browse files Browse the repository at this point in the history
  • Loading branch information
csaller authored Oct 30, 2023
1 parent 75d3b6a commit 90b3d47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fivetran_provider_async/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ def get_sync_status(
# Check if sync started by FivetranOperator has finished
# indicated by new 'succeeded_at' timestamp
if current_completed_at > previous_completed_at:
self.log.info("Connector %s: succeeded_at: %s, connector_id", succeeded_at.to_iso8601_string())
self.log.info("Connector %s: succeeded_at: %s", connector_id, succeeded_at.to_iso8601_string())
return True
else:
return False
Expand Down

0 comments on commit 90b3d47

Please sign in to comment.