Hey everyone, In terms of utilizing the RetryPoli...
# ask-community
n
Hey everyone, In terms of utilizing the RetryPolicy in our assets, could we implement it by doing something as simple as:
policy = RetryPolicy(max_retries=3,
delay=2)
@asset(deps=[upstream_asset],
retry_policy=policy)
def asset():
s
that should work!