"...models/git@developer.sourcefind.cn:OpenDAS/openpcdet.git" did not exist on "83954d039e48aedc95b09dac2075eb38f571d326"
Unverified Commit 3fa35f9e authored by Neelay Shah's avatar Neelay Shah Committed by GitHub
Browse files

fix: adding conversion to string for notif id comparison (#638)

parent e3857ba0
......@@ -4214,7 +4214,7 @@ index 819b81fb..2891854b 100644
+ for notifs in all_new_notifs:
+ for req_ids in notifs.values():
+ for req_id in req_ids:
+ request_notif_counter[req_id] += 1
+ request_notif_counter[req_id.decode("utf-8")] += 1
+
+ if request_notif_counter:
+ logger.debug("Request notif counter: %s", request_notif_counter)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment