Anatoli Beliaev

Results 27 issues of Anatoli Beliaev

### Issue describing the changes in this PR resolves #issue_for_this_pr ### Pull request checklist * [ ] My changes **do not** require documentation changes * [ ] Otherwise: Documentation issue...

PowerShell runspaces may be reused between function executions. This improves the warm start time, but may also lead to unexpected and undesirable consequences when a function execution encounters leftovers from...

documentation

https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-blob and other topics under "Triggers and bindings" have examples for every language except PowerShell.

documentation

Even though user-managed identity works after closing #235, we keep getting user complaints about it not working. It turns out that our users don't realize they need to do some...

documentation

**Problem** Creating and initializing a PowerShell runspace (potentially involving `profile.ps1` invocation) may take long time (for example, because of a Connect-AzAccount call). This is perceived as a cold start issue...

cold start

When authoring PowerShell functions, the Functions-specific commands (such as `Push-OutputBinding`, `Invoke-ActivityFunction`, etc.) are difficult to discover. The user must find the names and invocation syntax in the documentation and type...

feature:developer experience
investigation
P1

Repro steps: 1. Start a PowerShell Function app in VS Code by F5. 2. Wait for the app to start. Invoke a function or do not invoke any function -...

![image](https://user-images.githubusercontent.com/11563624/121101290-68b81c80-c7b0-11eb-8e20-29ce2a58a617.png) There are API sections for other languages, e.g. https://docs.microsoft.com/en-us/python/api/azure-functions-durable/azure.durable_functions?view=azure-python

documentation
feature:durable functions

See https://docs.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-bindings?tabs=csharp

documentation
feature:durable functions
P1

`Enable-ExperimentalFeature` fails with the "access denied" error. As a result, Azure Functions users cannot enable experimental PowerShell features. Apparently, `Enable-ExperimentalFeature` needs write access to the `$env:HOME` directory, and this path...

investigation