Getting stuck while Testing the flow

This is a very simple flow, get some data from the webhook and insert to a google sheet
The webhook test went well, but the google-sheet test is not generating any output

ps: I would like to understand what happens behind the scenes, when you click the test button, like If I want to dive deep into the source code - where should I start

1 Like

Hello @hari ,

Could you try refreshing the page and testing the action again?

Behind the scenes, when you click the test action, it will call the run method of the particular action. For the insert row action, you can refer to this source code.

1 Like

The issue was that I didn’t allow WebSocket in Nginx. I added the following, and now it’s working:

    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
2 Likes

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.