Skip to content

Commit

Permalink
Fix not_support_params
Browse files Browse the repository at this point in the history
  • Loading branch information
Wh1isper committed Nov 21, 2023
1 parent a99d439 commit 54735fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion duetector/analyzer/jaeger/analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ async def query(
"order_by_asc": order_by_asc,
"order_by_desc": order_by_desc,
}
for k, v in not_support_params:
for k, v in not_support_params.items():
if v:
logger.warning("Not support params: %s=%s", k, v)

Expand Down

0 comments on commit 54735fa

Please sign in to comment.