Skip to content

Commit

Permalink
fix: key error
Browse files Browse the repository at this point in the history
  • Loading branch information
Shalev Avhar committed Aug 14, 2024
1 parent 54b4dcb commit e2f64fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions port_ocean/ocean.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ async def update_state_before_scheduled_sync(
"status": "running",
"last_resync_start": self.last_resync_start.timestamp(),
"last_resync_end": None,
"interval_in minuets": _interval,
"interval_in_minuets": _interval,
"next_resync": self._calculate_next_scheduled_resync(
_interval, custom_start_time
),
Expand All @@ -122,7 +122,7 @@ async def update_state_after_scheduled_sync(
else None
),
"last_resync_end": datetime.datetime.now().timestamp(),
"interval_in minuets": _interval,
"interval_in_minuets": _interval,
"next_resync": self._calculate_next_scheduled_resync(
_interval, custom_start_time
),
Expand Down

0 comments on commit e2f64fb

Please sign in to comment.