change default value of oz_install_timeout to 0
This commit is contained in:
parent
5e76219bcc
commit
6a91a3ba6b
3 changed files with 7 additions and 6 deletions
|
|
@ -3563,7 +3563,7 @@ class OzImageTask(BaseTaskHandler):
|
|||
'imgdir': os.path.join(self.workdir, 'scratch_images'),
|
||||
'tmpdir': os.path.join(self.workdir, 'oz-tmp'),
|
||||
'verbose': True,
|
||||
'timeout': self.options.oz_install_timeout,
|
||||
'timeout': self.options.oz_install_timeout or None,
|
||||
'output': 'log',
|
||||
'raw': False,
|
||||
'debug': True,
|
||||
|
|
@ -5725,7 +5725,7 @@ def get_options():
|
|||
'resolver-status.properties *.lastUpdated',
|
||||
'failed_buildroot_lifetime' : 3600 * 4,
|
||||
'rpmbuild_timeout' : 3600 * 24,
|
||||
'oz_install_timeout': None,
|
||||
'oz_install_timeout': 0,
|
||||
'cert': None,
|
||||
'ca': '', # FIXME: Unused, remove in next major release
|
||||
'serverca': None}
|
||||
|
|
|
|||
|
|
@ -39,7 +39,8 @@
|
|||
; rpmbuild_timeout=86400
|
||||
|
||||
; Install timeout(seconds) for image build
|
||||
; if it's unset, use the number in /etc/oz/oz.cfg, supported since oz-0.16.0
|
||||
; Default value is 0, which means using the number in /etc/oz/oz.cfg,
|
||||
; supported since oz-0.16.0
|
||||
; oz_install_timeout=7200
|
||||
|
||||
; The URL for the xmlrpc server
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue