Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.toolbox
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos.toolbox
Commits
c7062cee
Commit
c7062cee
authored
Jun 29, 2021
by
Xavier Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
promise/plugin: Fix check_socket_listening promise
Accept unicode value for `port` parameter
parent
9c8b7a69
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
slapos/promise/plugin/check_socket_listening.py
slapos/promise/plugin/check_socket_listening.py
+2
-1
No files found.
slapos/promise/plugin/check_socket_listening.py
View file @
c7062cee
...
@@ -30,7 +30,8 @@ class RunPromise(GenericPromise):
...
@@ -30,7 +30,8 @@ class RunPromise(GenericPromise):
if
path
or
abstract
or
not
port
:
if
path
or
abstract
or
not
port
:
self
.
logger
.
error
(
ADDRESS_USAGE
)
self
.
logger
.
error
(
ADDRESS_USAGE
)
return
return
family
,
_
,
_
,
_
,
addr
=
socket
.
getaddrinfo
(
host
,
port
)[
0
]
# type of port must be int or str, unicode is not accepted.
family
,
_
,
_
,
_
,
addr
=
socket
.
getaddrinfo
(
host
,
int
(
port
))[
0
]
else
:
else
:
if
bool
(
path
)
==
bool
(
abstract
):
if
bool
(
path
)
==
bool
(
abstract
):
self
.
logger
.
error
(
ADDRESS_USAGE
)
self
.
logger
.
error
(
ADDRESS_USAGE
)
...
...
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