From 32bd26987b0c482d9307df009474fb1d3065e67a Mon Sep 17 00:00:00 2001 From: Aaron Dabney Date: Mon, 25 Aug 2025 20:54:53 -0700 Subject: [PATCH] fix: waiter circular dependency Signed-off-by: Aaron Dabney --- lib/common/lib/waiter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common/lib/waiter.ts b/lib/common/lib/waiter.ts index faa3a3f420..00b12d2ba6 100644 --- a/lib/common/lib/waiter.ts +++ b/lib/common/lib/waiter.ts @@ -3,7 +3,7 @@ * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ -import { OciError } from ".."; +import { OciError } from "./error"; export interface DelayStrategy { delay(context: WaitContext): number;