码迷,mamicode.com
首页 > 编程语言 > 详细

python自定义重试装饰器

时间:2020-06-15 11:48:08      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:bre   fixed   wrap   app   sleep   except   cep   time   exception   

 

import functools
import time


# 最大重试次数/重试间隔
def retry(stop_max_attempt_number=10, wait_fixed=2):
    def decorator(func):
        @functools.wraps(func)
        def wrapper(*args, **kw):
            retry_num = 0
            while retry_num < stop_max_attempt_number:
                rs = None
                try:
                    rs = func(*args, **kw)
                    break
                except Exception:
                    retry_num += 1
                    time.sleep(wait_fixed)
                finally:
                    if rs:
                        return rs

        return wrapper

    return decorator

 

python自定义重试装饰器

标签:bre   fixed   wrap   app   sleep   except   cep   time   exception   

原文地址:https://www.cnblogs.com/wangbin2188/p/13129748.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!