Skip to content

Commit

Permalink
Merge pull request #15 from supabase-community/fix/node-upgrade-tls
Browse files Browse the repository at this point in the history
fix: incorrect import in node tls file
  • Loading branch information
gregnr authored Sep 12, 2024
2 parents 6d67444 + 535251b commit e7a50b6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/pg-gateway/src/platforms/node/tls.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { X509Certificate } from 'node:crypto';
import { Duplex, once } from 'node:stream';
import { once } from 'node:events';
import { Duplex } from 'node:stream';
import { TLSSocket, type TLSSocketOptions, createSecureContext } from 'node:tls';
import type { TlsOptions, TlsOptionsCallback } from '../../connection.js';
import type { TlsInfo } from '../../connection.types.js';
Expand Down

0 comments on commit e7a50b6

Please sign in to comment.