You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just looked on some code in ThinBkrHandler and found that it changes record that is passed to it. That's perfectly ok, but there is only one record instance passed to all handlers: https://github.com/tlamer/teres/blob/master/teres/__init__.py#L329
Changing it in one handler influences others, which is not ok. Every handler should have it's own copy of record.
The text was updated successfully, but these errors were encountered:
I just looked on some code in ThinBkrHandler and found that it changes record that is passed to it. That's perfectly ok, but there is only one record instance passed to all handlers:
https://github.com/tlamer/teres/blob/master/teres/__init__.py#L329
Changing it in one handler influences others, which is not ok. Every handler should have it's own copy of record.
The text was updated successfully, but these errors were encountered: