Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
re6stnet
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Kirill Smelkov
re6stnet
Commits
82963ae2
Commit
82963ae2
authored
Oct 08, 2012
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ignore 'Invalid Args' error when refreshing UPnP forwarding
parent
d8df9fa9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
re6st/upnpigd.py
re6st/upnpigd.py
+1
-1
No files found.
re6st/upnpigd.py
View file @
82963ae2
...
...
@@ -44,7 +44,7 @@ class Forwarder:
try
:
self
.
_u
.
addportmapping
(
*
args
)
except
Exception
,
e
:
if
str
(
e
)
!=
'UnknownError'
:
if
str
(
e
)
not
in
(
'UnknownError'
,
'Invalid Args'
)
:
raise
logging
.
warning
(
"Failed to refresh port forwarding: %s"
,
args
)
self
.
next_refresh
=
time
.
time
()
+
500
...
...
Write
Preview
Markdown
is supported
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