Skip to content

Commit

Permalink
Updated max record age to 5 instead of 30 mins
Browse files Browse the repository at this point in the history
Fixes #1064
  • Loading branch information
spacecowboy committed Nov 16, 2022
1 parent bae24f1 commit f00c774
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 f00c774

Please sign in to comment.