Azure / azure-functions-powershell-worker

PowerShell language worker for Azure Functions.
MIT License
203 stars 51 forks source link

Managed dependency download Error #327

Closed nnekaede closed 4 years ago

nnekaede commented 4 years ago

I am running a Powershell core function through the Azure Web Portal. When I run a function I get the following error:

2019-09-16T14:37:51.707 [Error] Executed 'Functions.UiPath_New_User_Email' (Failed, Id=557d0895-1765-4558-9dc6-2346ddaa1841) Result: Failure Exception: Fail to install FunctionApp dependencies. Error: 'Fail to create FunctionApp dependencies destination path 'D:\home\data\ManagedDependencies\190916143602765.r'. Please make sure you have write access to this location. Error 'There is not enough space on the disk : 'D:\home\data\ManagedDependencies\190916143602765.ri''. ' Stack: at Microsoft.Azure.Functions.PowerShellWorker.DependencyManagement.DependencyManager.WaitOnDependencyInstallationTask() in C:\projects\azure-functions-powershell-worker\src\DependencyManagement\DependencyManager.cs:line 239 at Microsoft.Azure.Functions.PowerShellWorker.DependencyManagement.DependencyManager.WaitForDependenciesAvailability(Func`1 getLogger) in C:\projects\azure-functions-powershell-worker\src\DependencyManagement\DependencyManager.cs:line 145 at Microsoft.Azure.Functions.PowerShellWorker.RequestProcessor.ProcessInvocationRequest(StreamingMessage request) in C:\projects\azure-functions-powershell-worker\src\RequestProcessor.cs:line 233

AnatoliB commented 4 years ago

@nnekaede This error indicates problems with the file storage associated with the app. I can see from the logs that your app was having troubles installing Az modules, but then they were successfully installed at 2019-09-16 15:04:33 UTC. Is the issue resolved for you now?

nnekaede commented 4 years ago

Yes it was resolved! Thank you.