We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8384c3c commit 0bd6991Copy full SHA for 0bd6991
aries_cloudagent/__main__.py
@@ -21,7 +21,7 @@ def init_debug(args):
21
# --debug to use microsoft's visual studio remote debugger
22
if ENABLE_PTVSD or "--debug" in args:
23
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)
+ DAP_PORT = int(os.getenv("PTVSD_PORT", None) or os.getenv("DAP_PORT", 5678))
25
try:
26
import debugpy
27
0 commit comments