I have been getting this error in all of my stacks...
# dotnet
f
I have been getting this error in all of my stacks today
azure:appservice:AppService (connectmga-location-cde):
error: transport is closing
g
can you run with
-v5 --logtosderr
and see if you get more information? You might need to try
-v9
to get even more verbose logs.
f
working on it.
w
error: transport is closing
Note that in most cases I've seen this - it's a symptom of some other problem, not the cause. You most likely have some other error being reported which is the core problem, and that error is in turn causing this "transport is closing".
f
Thank you, that’s good to know, since I can deploy the stack locally it only fails when I do it using ADO.
s
Check your versions local to ado, plugins also
g
Can you share the code for your AppService resource?
f
the one that creates it?
Here it is @gentle-diamond-70147
g
Can you try setting a Logs -> ApplicationLogs block to see if the error goes away? https://www.pulumi.com/docs/reference/pkg/azure/appservice/appservice/#applicationlogs_csharp
f
ok
Would this be enough?
Copy code
Logs = new AppServiceLogsArgs
{
    ApplicationLogs = new AppServiceLogsApplicationLogsArgs
    {
        AzureBlobStorage = new AppServiceLogsApplicationLogsAzureBlobStorageArgs
        {
            Level = "Information"
        }
    }
},
Where can I find the format for the SasUrl