Skip to content

Commit 465c525

Browse files
committed
fix linting in BaseQueueDriver
1 parent b619430 commit 465c525

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cubejs-query-orchestrator/src/orchestrator/BaseQueueDriver.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export abstract class BaseQueueDriver implements QueueDriverInterface {
1414
return getCacheHash(queryKey, this.processUid);
1515
}
1616

17-
abstract createConnection(): Promise<QueueDriverConnectionInterface>;
17+
public abstract createConnection(): Promise<QueueDriverConnectionInterface>;
1818

19-
abstract release(connection: QueueDriverConnectionInterface): void;
19+
public abstract release(connection: QueueDriverConnectionInterface): void;
2020
}

0 commit comments

Comments
 (0)