Skip to content

Commit ea85761

Browse files
committed
Increase throttle time to 10 minutes
1 parent d7ebfd9 commit ea85761

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

airbyte_cdk/sources/declarative/incremental/concurrent_partition_cursor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,10 +229,10 @@ def ensure_at_least_one_state_emitted(self) -> None:
229229

230230
def _throttle_state_message(self) -> Optional[float]:
231231
"""
232-
Throttles the state message emission to once every 60 seconds.
232+
Throttles the state message emission to once every 600 seconds.
233233
"""
234234
current_time = time.time()
235-
if current_time - self._last_emission_time <= 60:
235+
if current_time - self._last_emission_time <= 600:
236236
return None
237237
return current_time
238238

0 commit comments

Comments
 (0)