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
While attempting to update to Microsoft.Azure.WebJobs 3.0.0 we received the warnings that pretty much everything associated with IFunctionFilter has been deprecated. We do not necessarily need IFunctionFilter, but we do need a means of disposing scope based dependencies.
As you are making improvements to an already amazing product, please keep in mind our use case. If IFunctionFilter does get removed or significantly changed, please advise us here on how to maintain our existing behaviors.
Be carefull with using this pattern in functions V2. When the functions is under heavy load you could receive an error 500 because of a non thread safe ScopedResolver (see Azure/azure-functions-host#3494)
While attempting to update to Microsoft.Azure.WebJobs 3.0.0 we received the warnings that pretty much everything associated with IFunctionFilter has been deprecated. We do not necessarily need IFunctionFilter, but we do need a means of disposing scope based dependencies.
As you are making improvements to an already amazing product, please keep in mind our use case. If IFunctionFilter does get removed or significantly changed, please advise us here on how to maintain our existing behaviors.
Here is how we are using IFunctionFilter
Here's the associated IBinding implementation that creates the IServiceScope:
The text was updated successfully, but these errors were encountered: