We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5a7dee commit dc29488Copy full SHA for dc29488
2 files changed
src/transport/http/stdlib.ts
@@ -33,6 +33,7 @@ class HttpTransport extends HttpTransportBase {
33
34
/**
35
* Creates a new HttpTransport instance using Node.js HTTP modules.
36
+ *
37
* @param options - Sender configuration object containing connection details
38
* @throws Error if the protocol is not 'http' or 'https'
39
*/
src/transport/tcp.ts
@@ -175,8 +175,7 @@ class TcpTransport implements SenderTransport {
175
}
176
177
178
- * Closes the TCP connection to the database. <br>
179
- * Data sitting in the Sender's buffer will be lost unless flush() is called before close().
+ * Closes the TCP connection to the database.
180
181
async close(): Promise<void> {
182
if (this.socket) {
0 commit comments