Skip to content

Commit

Permalink
Appinfo comes in as a bytes array, convert to str before storing it
Browse files Browse the repository at this point in the history
  • Loading branch information
djw8605 committed Feb 9, 2024
1 parent b75bfac commit 8e58ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Collectors/DetailedCollector.py
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ def process(self, data, addr, port):
self._dictid_map[sid][mm.dictID] = pathInfo

elif header.code == b'i':
appinfo = rest
appinfo = rest.decode('utf-8')
if sid not in self._users:
self._users[sid] = ttldict.TTLOrderedDict(default_ttl=DEFAULT_TTL)

Expand Down

0 comments on commit 8e58ace

Please sign in to comment.