Skip to content

Commit

Permalink
fix(taps): Change max record age for emitting state messages to 5 ins…
Browse files Browse the repository at this point in the history
…tead of 30 mins (#1192)

Co-authored-by: Edgar R. M <[email protected]>
Fixes #1064
  • Loading branch information
spacecowboy authored Nov 16, 2022
1 parent c27b3d7 commit 61ed7b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion singer_sdk/target_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Target(PluginBase, SingerReader, metaclass=abc.ABCMeta):
object for that record.
"""

_MAX_RECORD_AGE_IN_MINUTES: float = 30.0
_MAX_RECORD_AGE_IN_MINUTES: float = 5.0

# Default class to use for creating new sink objects.
# Required if `Target.get_sink_class()` is not defined.
Expand Down

0 comments on commit 61ed7b4

Please sign in to comment.