In commit b0c9de82, line 343: self.next_conversation_id = itertools.count().next was changed to: self.next_conversation_id = next(itertools.count()) which is not correct, the first one is a function, the second one is a int. This will cause the script/traffic_replay script fail to work. A Merge Request has already been created on gitlab: https://gitlab.com/samba-team/samba/merge_requests/33
This has been fixed for a while in master. Joe: do we need a backport to 4.9 or can we just close it?
closing bug report, fixed in all supported versions