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 #1393

Closed
wants to merge 2 commits into from
Closed
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
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