Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ticket1392 internal attrs #1394

Merged
merged 3 commits into from Jun 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -39,7 +39,7 @@ matrix:
#
# Flake8
#
- python: "3.5"
- python: "3.8"
env:
- TOX_ENV=flake8

Expand Down
5 changes: 5 additions & 0 deletions autobahn/wamp/message.py
Expand Up @@ -378,6 +378,8 @@ class Message(object):
'_correlation_uri',
'_correlation_is_anchor',
'_correlation_is_last',

'_router_internal',
)

def __init__(self, from_fbs=None):
Expand All @@ -393,6 +395,9 @@ def __init__(self, from_fbs=None):
self._correlation_is_anchor = None
self._correlation_is_last = None

# non-serialized 'internal' attributes (used by Crossbar router)
self._router_internal = None

@property
def correlation_id(self):
return self._correlation_id
Expand Down