Skip to content

Commit

Permalink
removed getInternalPool (for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
pj-spoelders committed Nov 8, 2024
1 parent 9407bbd commit 18bc7e8
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/lib/sql-pool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class ExasolPool {
constructor(
websocketFactory: websocketFactory,
config: Partial<Config> & Partial<PoolConfig>,
logger: ILogger = new Logger(LogLevel.Debug),
logger: ILogger = new Logger(LogLevel.Off),
) {
this.logger = logger;
this.internalPool = getPool(websocketFactory, config, logger);
Expand Down Expand Up @@ -100,7 +100,4 @@ export class ExasolPool {
public async clear() {
await this.internalPool.clear();
}
public getInternalPool() {
return this.internalPool;
}
}

0 comments on commit 18bc7e8

Please sign in to comment.