Skip to content

Commit 29e9c9c

Browse files
committed
Fix pr_tpldjitter statistics not being added
1 parent bdb432e commit 29e9c9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xenalib/XenaPort.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -154,13 +154,13 @@ def __parse_stats(self, stats_list):
154154
data[entry_id] = self.__pack_tpldlatency_stats(parms, 3)
155155
storage['pr_tpldlatency'] = data
156156
elif parms[1] == 'PR_TPLDJITTER':
157-
if 'pr_tpljitter' in storage:
157+
if 'pr_tpldjitter' in storage:
158158
data = storage['pr_tpldjitter']
159159
else:
160160
data = {}
161161
entry_id = parms[2].strip('[]')
162162
data[entry_id] = self.__pack_tpldjitter_stats(parms, 3)
163-
storage['pr_pldjitter'] = data
163+
storage['pr_tpldjitter'] = data
164164
elif parms[1] == 'PR_FILTER':
165165
if 'pr_filter' in storage:
166166
data = storage['pr_filter']

0 commit comments

Comments
 (0)