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 d7669cd commit a7ce155Copy full SHA for a7ce155
src/FunctionAppResolver.ts
@@ -38,6 +38,7 @@ export class FunctionAppResolver implements AppResourceResolver {
38
39
public async resolveResource(subContext: ISubscriptionContext, resource: AppResource): Promise<ResolvedFunctionAppResource | ResolvedContainerizedFunctionAppResource | undefined> {
40
return await callWithTelemetryAndErrorHandling('resolveResource', async (context: IActionContext) => {
41
+ context.errorHandling.rethrow = true; // rethrow errors to ensure it bubbles up to the resolver
42
if (this.siteCacheLastUpdated < Date.now() - 1000 * 3) {
43
// do this before the graph client is created because the async graph client create takes enough time to mess up the following resolves
44
this.loaded = false;
0 commit comments