Lilian Kasem
Lilian Kasem
### Issue describing the changes in this PR A bug was found where it appears that metrics are being captured pre-specialization and being persisted, leading to an inflated started invocation...
### Issue describing the changes in this PR Addressing a missing permanent app failure use case; if the dotnet worker is not able to start due to a fatal user...
As part of some of the flex work happening, we recently made a change in the host to capture an "AppFailure" count when there is a "permanent" app failure in...
Stress test the metric service. On average, a stamp will contain 400-500 sites. Use the test data to setup the stress tests and eventually switch to a real Mdm connection.
The current implementation of `GetDefaultType` in `TriggerAdapterBindingProvider` ([code](https://github.com/Azure/azure-webjobs-sdk/blob/2ccfd4966764b5fe4e2c2f2c3597a800864344a7/src/Microsoft.Azure.WebJobs.Host/Bindings/BindingProviders/TriggerAdapterBindingProvider.cs#L55-L76)) does not use the `requestedType` when checking if we have a converter that supports a given type. Ideally, this should function in...
### Issue describing the changes in this PR #10044 ### Pull request checklist **IMPORTANT**: Currently, changes must be backported to the `in-proc` branch to be included in Core Tools and...
Add 'Needs: Author Feedback' label to issues that have not been touched in 3 years. This policy runs every Monday at 10am.
### Issue describing the changes in this PR Part of #10135 ### Pull request checklist **IMPORTANT**: Currently, changes must be backported to the `in-proc` branch to be included in Core...
Updating integration test project to reference the CSharpPrecompiledTestProjects directly; a backport from what we are now doing in the in-proc branch: https://github.com/Azure/azure-functions-host/pull/10117
Currently the business logic edge module uses while loop to run forever: ```python async def continuous_loop(): while True: time.sleep(100) ``` A good potential improvement for this edge module is to...