So I've deployed a simple Node.js app on Google App Engine Standard Environment and when I navigate to the Debug section of my serivce/app I get this message:
"Stackdriver Debugger is not correctly configured for your project."
When I click on the "Fix" button it then says
"Please fix the following issue and try again"
I press the fix button and it says:
"Stackdriver Debugger has been correctly configured for your project."
Then it says
"Stackdriver Debugger has been correctly configured for your project."
"The Stackdriver Debugger is now correctly configured, however it might take up to 30 minutes for the changes to be applied."
When I hit continue, it goes back to the original message and says: "Stackdriver Debugger is not correctly configured for your project."
It's an infinite loop and no amount of waiting seems to be able show any difference
I've enabled the API in my project as it says to in the docs, I have this at the top of my main node script:
require('@google-cloud/debug-agent').start({ allowExpressions:true});
Nothing seems to make a difference. Anyone able to shed some light on this?