temporalio / vscode-debugger-extension

Visual Studio Code debugger plugin
https://marketplace.visualstudio.com/items?itemName=temporal-technologies.temporalio
MIT License
19 stars 7 forks source link

[Question] Does this support breakpoints on activities that are invoked via proxyActivities #70

Closed efreethy closed 9 months ago

efreethy commented 9 months ago

I was able to set breakpoints in the workflow itself, however there are callouts to activity functions that are proxied via proxyActivities, and I cannot setup break points in those activities.

Is there a way to work around this?

Thanks

lorensr commented 9 months ago

No, it’s just a workflow history replayer, which doesn’t actually call activities, just uses the return values in history. I just clarified this here: https://github.com/temporalio/vscode-debugger-extension/pull/60

For debugging activities, see here: https://github.com/temporalio/samples-typescript/issues/319