fixbug
This commit is contained in:
parent
90e4986353
commit
27dab2272d
@ -557,10 +557,8 @@ class TapWeeklyReport:
|
||||
for line in data:
|
||||
try:
|
||||
data_type = line.get("name")
|
||||
pdb.set_trace()
|
||||
for items in line.get("row_data"):
|
||||
for one_row in items:
|
||||
for tag in one_row.split(',')[-1]:
|
||||
for tag in items.split(',')[-1]:
|
||||
row_tags[data_type][tag] += row_tags[data_type].get(tag, 0) + 1
|
||||
except Exception:
|
||||
log.error(f"collect tags failed with {line}", exc_info=True)
|
||||
|
Loading…
x
Reference in New Issue
Block a user