Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
e713874a
Commit
e713874a
authored
Feb 15, 2007
by
Jonathon Duerig
Browse files
Fixed type error in error-reporting code.
parent
39cbc1f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
pelab/monitor/monitor.py
View file @
e713874a
...
...
@@ -553,7 +553,7 @@ def receive_parse_body():
if
not
sock
.
number_to_connection
.
has_key
(
connectionKey
):
raise
Exception
(
'ERROR: magent event received that does not '
+
'correspond to a connection. socketKey: '
+
socketKey
+
' connectionKey: '
+
connectionKey
)
+
' connectionKey: '
+
str
(
connectionKey
)
)
app_connection
=
sock
.
number_to_connection
[
connectionKey
]
if
eventType
==
EVENT_FORWARD_PATH
:
set_connection
(
this_ip
,
app_connection
.
dest
.
local_port
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment