Skip to content

Commit a422050

Browse files
Fix leak to clear logs
1 parent d98b572 commit a422050

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
DATABASE_DATABASE: ${{ secrets.DATABASE_DATABASE }}
3030
run: npm test
3131

32-
- name: Upload coverage reports to Codecov
32+
- name: Upload Code Coverage
3333
uses: codecov/codecov-action@v3
3434
env:
3535
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

src/protocol.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ export class SQLiteCloudConnection {
218218
const client: tls.TLSSocket = tls.connect(this._config.port as number, this._config.host, this._config.tlsOptions, () => {
219219
if (client.authorized) {
220220
const commands = this.initializationCommands
221-
this._log('Connection initializing', commands)
221+
this._log('Connection initializing')
222222

223223
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
224224
this._socket = client

0 commit comments

Comments
 (0)