|
@@ -90,10 +90,10 @@ class BishengService:
|
|
|
name = message_json['query']
|
|
name = message_json['query']
|
|
|
elif 'report_name' in message_json:
|
|
elif 'report_name' in message_json:
|
|
|
name = message_json['report_name']
|
|
name = message_json['report_name']
|
|
|
- except json.JSONDecodeError:
|
|
|
|
|
|
|
+ except Exception as e:
|
|
|
pass
|
|
pass
|
|
|
if not name:
|
|
if not name:
|
|
|
- name = item.get("flow_name")
|
|
|
|
|
|
|
+ name = item.get("flow_name")
|
|
|
return name[:50]
|
|
return name[:50]
|
|
|
|
|
|
|
|
result = [
|
|
result = [
|