From 3b6b987149c20975c46959c512b2d1e1c7ae7158 Mon Sep 17 00:00:00 2001 From: Srinath Narayanan Date: Sat, 22 May 2021 01:49:07 +0530 Subject: [PATCH] Sqlx bug fixes (#816) * fixed bugs in sqlx * fixed bug with discard --- src/SelfServe/SelfServeComponent.tsx | 2 +- src/SelfServe/SqlX/SqlX.rp.ts | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/SelfServe/SelfServeComponent.tsx b/src/SelfServe/SelfServeComponent.tsx index 732c5df17..c9ddc9371 100644 --- a/src/SelfServe/SelfServeComponent.tsx +++ b/src/SelfServe/SelfServeComponent.tsx @@ -166,7 +166,7 @@ export class SelfServeComponent extends React.Component => { } catch (e) { const failureTelemetry = { e, selfServeClassName: SqlX.name }; selfServeTraceFailure(failureTelemetry, deleteTimeStamp); + throw e; } return armRequestResult?.operationStatusUrl; }; @@ -90,6 +92,7 @@ export const getDedicatedGatewayResource = async (): Promise