From: yangyan Date: Sun, 31 Mar 2019 08:05:49 +0000 (+0800) Subject: fix catalog middleware X-Git-Tag: 1.3.0~62 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=a2544b69d389949ee6cbe6c23348ccb21f928535;p=vfc%2Fnfvo%2Fcatalog.git fix catalog middleware Change-Id: Ice99b2557936bd4753ade53ecfc1b0bbc0230720 Issue-ID: VFC-1322 Signed-off-by: yangyan --- diff --git a/catalog/middleware.py b/catalog/middleware.py index 0617fead..cd6aa8b2 100644 --- a/catalog/middleware.py +++ b/catalog/middleware.py @@ -41,10 +41,10 @@ class LogContextMiddleware(object): def process_request(self, request): # Fetch TRANSACTIONID Id and pass to plugin server - ReqeustID = request.META.get("HTTP_X_TRANSACTIONID", None) + ReqeustID = request.META.get("HTTP_X_ONAP-RequestID", None) if ReqeustID is None: ReqeustID = uuid.uuid3(uuid.NAMESPACE_URL, SERVICE_NAME) - request.META["HTTP_X_TRANSACTIONID"] = ReqeustID + request.META["HTTP_X_ONAP-RequestID"] = ReqeustID MDC.put("requestID", ReqeustID) # generate the unique id InovocationID = uuid.uuid3(uuid.NAMESPACE_DNS, SERVICE_NAME)