本文整理汇总了Python中coprs.logic.actions_logic.ActionsLogic.send_delete_build方法的典型用法代码示例。如果您正苦于以下问题:Python ActionsLogic.send_delete_build方法的具体用法?Python ActionsLogic.send_delete_build怎么用?Python ActionsLogic.send_delete_build使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类coprs.logic.actions_logic.ActionsLogic
的用法示例。
在下文中一共展示了ActionsLogic.send_delete_build方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: delete_build
# 需要导入模块: from coprs.logic.actions_logic import ActionsLogic [as 别名]
# 或者: from coprs.logic.actions_logic.ActionsLogic import send_delete_build [as 别名]
def delete_build(cls, user, build, send_delete_action=True):
"""
:type user: models.User
:type build: models.Build
"""
if not user.can_edit(build.copr):
raise exceptions.InsufficientRightsException(
"You are not allowed to delete build `{}`.".format(build.id))
if not build.deletable:
# from celery.contrib import rdb; rdb.set_trace()
raise exceptions.ActionInProgressException(
"You can not delete build `{}` which is not finished.".format(build.id),
"Unfinished build")
if send_delete_action and build.state not in ["canceled"]: # cancelled builds should have nothing in backend to delete
ActionsLogic.send_delete_build(build)
for build_chroot in build.build_chroots:
db.session.delete(build_chroot)
db.session.delete(build)