https://pulumi.com logo
#dotnet
Title
f

fresh-lifeguard-12682

10/29/2020, 5:24 PM
I have been getting this error in all of my stacks today
azure:appservice:AppService (connectmga-location-cde):
error: transport is closing
g

gentle-diamond-70147

10/29/2020, 5:32 PM
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

fresh-lifeguard-12682

10/29/2020, 5:38 PM
working on it.
w

white-balloon-205

10/29/2020, 6:35 PM
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

fresh-lifeguard-12682

10/29/2020, 6:54 PM
Thank you, that’s good to know, since I can deploy the stack locally it only fails when I do it using ADO.
s

strong-plastic-28250

10/29/2020, 9:51 PM
Check your versions local to ado, plugins also
g

gentle-diamond-70147

10/29/2020, 11:06 PM
Can you share the code for your AppService resource?
f

fresh-lifeguard-12682

10/29/2020, 11:12 PM
the one that creates it?
Here it is @gentle-diamond-70147
g

gentle-diamond-70147

10/30/2020, 4:16 PM
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

fresh-lifeguard-12682

10/30/2020, 5:21 PM
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
2 Views