91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何進行FaultWrapper解析

發布時間:2021-12-28 15:42:00 來源:億速云 閱讀:142 作者:柒染 欄目:云計算

這篇文章將為大家詳細講解有關如何進行FaultWrapper解析,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

FaultWrapper解析

class FaultWrapper(base_wsgi.Middleware):#繼承基礎的WSGI中間件"""調用中間件堆棧,將exceptions封裝成faults。"""    _status_to_type = {}@staticmethod    def status_to_type(status):
        #根據狀態碼轉換成webob相應的類型實例if not FaultWrapper._status_to_type:for clazz in utils.walk_class_hierarchy(webob.exc.HTTPError):# 遍歷HTTPError類層次結構 
                FaultWrapper._status_to_type[clazz.code] = clazzreturn FaultWrapper._status_to_type.get(
                                  status, webob.exc.HTTPInternalServerError)()def _error(self, inner, req):
        LOG.exception(_LE("Caught error: %s"), inner)

        safe = getattr(inner, 'safe', False)
        headers = getattr(inner, 'headers', None)
        status = getattr(inner, 'code', 500)if status is None:
            status = 500        msg_dict = dict(url=req.url, status=status)
        LOG.info(_LI("%(url)s returned with HTTP %(status)d"), msg_dict)
        outer = self.status_to_type(status)#調用exception轉換方法if headers:
            outer.headers = headers# NOTE(johannes): We leave the explanation empty here on        # purpose. It could possibly have sensitive information        # that should not be returned back to the user. See        # bugs 868360 and 874472        # NOTE(eglynn): However, it would be over-conservative and        # inconsistent with the EC2 API to hide every exception,        # including those that are safe to expose, see bug 1021373        if safe:
            #處理翻譯
            user_locale = req.best_match_language()
            inner_msg = translate(inner.message, user_locale)
            outer.explanation = '%s: %s' % (inner.__class__.__name__,
                                            inner_msg)

        notifications.send_api_fault(req.url, status, inner)#調用rpc發送api錯誤到消息隊列return wsgi.Fault(outer) #返回webob.exc.HTTPException錯誤對象

    @webob.dec.wsgify(RequestClass=wsgi.Request)def __call__(self, req):try:return req.get_response(self.application) #執行wsgi應用程序except Exception as ex:return self._error(ex, req)#遇到exception后,調用此方法處理exception,封裝成http錯誤返回

關于如何進行FaultWrapper解析就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

黑山县| 静乐县| 松滋市| 东光县| 南涧| 娄底市| 肥东县| 赣榆县| 南宫市| 凯里市| 东辽县| 福清市| 日土县| 社会| 开阳县| 壤塘县| 大竹县| 故城县| 泊头市| 北票市| 碌曲县| 华池县| 清涧县| 赤壁市| 福清市| 白银市| 中西区| 益阳市| 白山市| 安塞县| 南安市| 潼关县| 达拉特旗| 金沙县| 鹤岗市| 新晃| 永顺县| 类乌齐县| 镇赉县| 资阳市| 连山|