Skip to content

Commit

Permalink
correct the message format
Browse files Browse the repository at this point in the history
  • Loading branch information
eeliu committed Apr 26, 2024
1 parent 54d1683 commit af0d30a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/PY/pinpointPy/Django/BaseDjangoRequestPlugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def onEnd(self, traceIdOjb: Common.TraceIdObject, ret):
Defines.PP_HTTP_STATUS_CODE, str(ret.status_code), trace_id)
if ret.status_code >= 400:
pinpoint.mark_as_error(
f'status code ={ret.status_code}', "", 0, trace_id)
f'status_code={ret.status_code}', "", 0, trace_id)
self._add_ut(trace_id, traceIdOjb._request_, ret)
###############################################################
super().onEnd(traceIdOjb, ret)
Expand Down

0 comments on commit af0d30a

Please sign in to comment.