Skip to content

Commit dc29488

Browse files
committed
fix merge fallout
1 parent e5a7dee commit dc29488

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/transport/http/stdlib.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ class HttpTransport extends HttpTransportBase {
3333

3434
/**
3535
* Creates a new HttpTransport instance using Node.js HTTP modules.
36+
*
3637
* @param options - Sender configuration object containing connection details
3738
* @throws Error if the protocol is not 'http' or 'https'
3839
*/

src/transport/tcp.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,7 @@ class TcpTransport implements SenderTransport {
175175
}
176176

177177
/**
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().
178+
* Closes the TCP connection to the database.
180179
*/
181180
async close(): Promise<void> {
182181
if (this.socket) {

0 commit comments

Comments
 (0)