You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What problem would the feature you're requesting solve? Please describe.
We have many functions that we do not want to run while in development. For the in-process worker we can use the [Disable] attribute using a compiler flag (DEBUG). This ensures that the function will never run when in development.
This is critical for projects that have functions with timers and queues. Otherwise, they would start firing.
We could use the settings file. But every time you clone the project you would have to get this form somewhere, which may or may not be updated.
Describe the solution you'd like
Be able to disable functions using a compiler flag and the attribute that exists in the in-process worker:
#if DEBUG
[Disable()]
#endif
Describe alternatives you've considered
Using the settings file, but that is not persisted and can get out of sync.
The text was updated successfully, but these errors were encountered:
What problem would the feature you're requesting solve? Please describe.
We have many functions that we do not want to run while in development. For the in-process worker we can use the [Disable] attribute using a compiler flag (DEBUG). This ensures that the function will never run when in development.
This is critical for projects that have functions with timers and queues. Otherwise, they would start firing.
We could use the settings file. But every time you clone the project you would have to get this form somewhere, which may or may not be updated.
Describe the solution you'd like
Be able to disable functions using a compiler flag and the attribute that exists in the in-process worker:
#if DEBUG
[Disable()]
#endif
Describe alternatives you've considered
Using the settings file, but that is not persisted and can get out of sync.
The text was updated successfully, but these errors were encountered: