Skip to content

Commit

Permalink
feat: increase default timeout for container sync
Browse files Browse the repository at this point in the history
  • Loading branch information
jackhodgkiss committed Apr 15, 2024
1 parent 08eba4e commit d729385
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions plugins/modules/container_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
- Name of the repository
type: str
required: true
timeout:
default: 3600
extends_documentation_fragment:
- pulp.squeezer.pulp.glue
- pulp.squeezer.pulp
Expand Down Expand Up @@ -80,6 +82,7 @@ def main():
argument_spec=dict(
remote=dict(required=False),
repository=dict(required=True),
timeout=dict(type="int", default=3600),
),
) as module:
repository_ctx = PulpContainerRepositoryContext(
Expand Down

0 comments on commit d729385

Please sign in to comment.