Skip to content

Commit fd0dcf8

Browse files
committed
refactor: remove unused AbortController in dbtCloudIntegration
1 parent dc2110a commit fd0dcf8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/dbt_client/dbtCloudIntegration.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -694,9 +694,7 @@ export class DBTCloudProjectIntegration implements DBTProjectIntegration {
694694
"json",
695695
]),
696696
);
697-
const { stderr } = await compileQueryCommand.execute(
698-
new AbortController().signal,
699-
);
697+
const { stderr } = await compileQueryCommand.execute();
700698
const exception = this.processJSONErrors(stderr);
701699
if (exception) {
702700
throw exception;

0 commit comments

Comments
 (0)