Skip to content

Commit

Permalink
Connect python debugger to 0.0.0.0 instead of localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
Jairo Llopis authored and github-actions[bot] committed Nov 25, 2020
1 parent deca2c4 commit 6315685
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tasks_downstream.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ def write_code_workspace_file(c, cw_path=None):
"request": "attach",
"pathMappings": [],
"port": int(ODOO_VERSION) * 1000 + 899,
"host": "localhost",
# HACK https://github.com/microsoft/vscode-python/issues/14820
"host": "0.0.0.0",
}
firefox_configuration = {
"type": "firefox",
Expand Down

0 comments on commit 6315685

Please sign in to comment.