docs: Fix typo on line 967 (#17785)

* Line 976 was wakeup, now wake up

* Removed package lock to test environment

* Return original package-lock.json
This commit is contained in:
Christopher C Fleming
2021-12-16 21:51:06 -05:00
committed by GitHub
parent afd2e9f2ca
commit 4beaa81de3

View File

@@ -964,7 +964,7 @@ You are now ready to attach a debugger to the process. Using VSCode you can conf
}
```
VSCode will not stop on breakpoints right away. We've attached to PID 6 however it does not yet know of any sub-processes. In order to "wakeup" the debugger you need to modify a python file. This will trigger Flask to reload the code and create a new sub-process. This new sub-process will be detected by VSCode and breakpoints will be activated.
VSCode will not stop on breakpoints right away. We've attached to PID 6 however it does not yet know of any sub-processes. In order to "wake up" the debugger you need to modify a python file. This will trigger Flask to reload the code and create a new sub-process. This new sub-process will be detected by VSCode and breakpoints will be activated.
### Debugging Server App in Kubernetes Environment