Skip to content

Commit

Permalink
rpmbuild: increase the custom method timeout to 90 minutes
Browse files Browse the repository at this point in the history
Fix #3384
  • Loading branch information
FrostyX authored and praiskup committed Sep 6, 2024
1 parent 5a6f48f commit 414fc74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpmbuild/copr_rpmbuild/providers/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def init_provider(self):
self.inner_resultdir = source_json.get('resultdir')
self.builddeps = source_json.get('builddeps')
self.repos = self.task.get('repos')
self.timeout = source_json.get("timeout", 3600)
self.timeout = source_json.get("timeout", 60 * 90)

if 'hook_data' in source_json:
self.hook_payload_url = "{server}/tmp/{tmp}/hook_payload".format(
Expand Down

0 comments on commit 414fc74

Please sign in to comment.