File tree 1 file changed +5
-0
lines changed
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ export class SrvPoller extends TypedEventEmitter<SrvPollerEvents> {
103
103
}
104
104
}
105
105
106
+ // TODO(NODE-4817): This method has been left to allow for refactoring with the new logger
106
107
schedule ( ) : void {
107
108
if ( this . _timeout ) {
108
109
clearTimeout ( this . _timeout ) ;
@@ -120,12 +121,16 @@ export class SrvPoller extends TypedEventEmitter<SrvPollerEvents> {
120
121
this . emit ( SrvPoller . SRV_RECORD_DISCOVERY , new SrvPollingEvent ( srvRecords ) ) ;
121
122
}
122
123
124
+ // TODO(NODE-4817): This method has been left here to allow for refactoring with
125
+ // the new logger
123
126
// eslint-disable-next-line @typescript-eslint/no-unused-vars
124
127
failure ( _message : string , _obj ?: NodeJS . ErrnoException ) : void {
125
128
this . haMode = true ;
126
129
this . schedule ( ) ;
127
130
}
128
131
132
+ // TODO(NODE-4817): This method has been left here to allow for refactoring with
133
+ // the new logger
129
134
// eslint-disable-next-line @typescript-eslint/no-empty-function, @typescript-eslint/no-unused-vars
130
135
parentDomainMismatch ( _srvRecord : dns . SrvRecord ) : void { }
131
136
You can’t perform that action at this time.
0 commit comments