Skip to content

Commit 0bd6991

Browse files
Gavinokjamshale
andauthored
Ensure that DAP_PORT is always an int (#3241)
Signed-off-by: Gavin Jaeger-Freeborn <[email protected]> Co-authored-by: jamshale <[email protected]>
1 parent 8384c3c commit 0bd6991

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aries_cloudagent/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def init_debug(args):
2121
# --debug to use microsoft's visual studio remote debugger
2222
if ENABLE_PTVSD or "--debug" in args:
2323
DAP_HOST = os.getenv("PTVSD_HOST", None) or os.getenv("DAP_HOST", "localhost")
24-
DAP_PORT = os.getenv("PTVSD_PORT", None) or os.getenv("DAP_PORT", 5678)
24+
DAP_PORT = int(os.getenv("PTVSD_PORT", None) or os.getenv("DAP_PORT", 5678))
2525
try:
2626
import debugpy
2727

0 commit comments

Comments
 (0)