We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca773d3 commit f08f392Copy full SHA for f08f392
test/WebJobs.Script.Tests.E2E.Shared/FunctionAppFixture.cs
@@ -153,11 +153,7 @@ public async Task WaitForSite()
153
await Task.Delay(delay);
154
}
155
156
- // Workaround for https://github.com/Azure/azure-functions-host/issues/2397 as the base URL
157
- // doesn't currently start the host.
158
- // var result = await client.GetAsync($"{Settings.SiteBaseAddress}");
159
- var functions = await _kuduClient.GetFunctions();
160
- var result = await client.GetAsync($"{Settings.SiteBaseAddress}/admin/functions/{functions.First().Name}/status?code={FunctionAppMasterKey}");
+ var result = await client.GetAsync($"{Settings.SiteBaseAddress}");
161
statusCode = result.StatusCode;
162
if (statusCode == HttpStatusCode.OK)
163
{
0 commit comments