mirror of
https://github.com/odoo/runbot.git
synced 2025-04-04 01:01:00 +07:00
[FIX] runbot: avoid traceback when forcing a preparing batch
When forcing a new batch on a bundle the _force method does not return a batch leading to a traceback in the force_bundle route.
This commit is contained in:
parent
f7a12c6359
commit
e2dca17e42
@ -210,6 +210,7 @@ class Runbot(Controller):
|
|||||||
def force_bundle(self, bundle, auto_rebase=False, **_post):
|
def force_bundle(self, bundle, auto_rebase=False, **_post):
|
||||||
_logger.info('user %s forcing bundle %s', request.env.user.name, bundle.name) # user must be able to read bundle
|
_logger.info('user %s forcing bundle %s', request.env.user.name, bundle.name) # user must be able to read bundle
|
||||||
batch = bundle.sudo()._force()
|
batch = bundle.sudo()._force()
|
||||||
|
if batch:
|
||||||
batch._log('Batch forced by %s', request.env.user.name)
|
batch._log('Batch forced by %s', request.env.user.name)
|
||||||
batch._prepare(auto_rebase)
|
batch._prepare(auto_rebase)
|
||||||
return werkzeug.utils.redirect('/runbot/batch/%s' % batch.id)
|
return werkzeug.utils.redirect('/runbot/batch/%s' % batch.id)
|
||||||
|
Loading…
Reference in New Issue
Block a user