@@ -366,7 +366,7 @@ public void setUp() throws IOException {
366366 cleanupRule .register (InProcessChannelBuilder .forName (serverName ).directExecutor ().build ());
367367
368368 xdsServerInfo = ServerInfo .create (SERVER_URI , CHANNEL_CREDENTIALS , ignoreResourceDeletion (),
369- true , false , false );
369+ true , false , false , null );
370370 BootstrapInfo bootstrapInfo =
371371 Bootstrapper .BootstrapInfo .builder ()
372372 .servers (Collections .singletonList (xdsServerInfo ))
@@ -1557,7 +1557,7 @@ public void ldsResourceDeleted_ignoreResourceDeletion() {
15571557 public void ldsResourceDeleted_failOnDataErrors_true () {
15581558 BootstrapperImpl .xdsDataErrorHandlingEnabled = true ;
15591559 xdsServerInfo = ServerInfo .create (SERVER_URI , CHANNEL_CREDENTIALS , false ,
1560- true , false , true );
1560+ true , false , true , null );
15611561 BootstrapInfo bootstrapInfo =
15621562 Bootstrapper .BootstrapInfo .builder ()
15631563 .servers (Collections .singletonList (xdsServerInfo ))
@@ -1618,7 +1618,7 @@ public void ldsResourceDeleted_failOnDataErrors_false() {
16181618 BootstrapperImpl .xdsDataErrorHandlingEnabled = true ;
16191619
16201620 xdsServerInfo = ServerInfo .create (SERVER_URI , CHANNEL_CREDENTIALS , false ,
1621- true , false , false );
1621+ true , false , false , null );
16221622 BootstrapInfo bootstrapInfo =
16231623 Bootstrapper .BootstrapInfo .builder ()
16241624 .servers (Collections .singletonList (xdsServerInfo ))
@@ -1681,7 +1681,7 @@ public void ldsResourceDeleted_failOnDataErrorsIgnoredWithoutEnvVar() {
16811681 BootstrapperImpl .xdsDataErrorHandlingEnabled = false ;
16821682
16831683 xdsServerInfo = ServerInfo .create (SERVER_URI , CHANNEL_CREDENTIALS , false ,
1684- true , false , true );
1684+ true , false , true , null );
16851685 BootstrapInfo bootstrapInfo =
16861686 Bootstrapper .BootstrapInfo .builder ()
16871687 .servers (Collections .singletonList (xdsServerInfo ))
@@ -3244,7 +3244,7 @@ public void cdsResourceDeleted_ignoreResourceDeletion() {
32443244 public void cdsResourceDeleted_failOnDataErrors_true () {
32453245 BootstrapperImpl .xdsDataErrorHandlingEnabled = true ;
32463246 xdsServerInfo = ServerInfo .create (SERVER_URI , CHANNEL_CREDENTIALS , false ,
3247- true , false , true );
3247+ true , false , true , null );
32483248 BootstrapInfo bootstrapInfo =
32493249 Bootstrapper .BootstrapInfo .builder ()
32503250 .servers (Collections .singletonList (xdsServerInfo ))
@@ -3303,7 +3303,7 @@ public void cdsResourceDeleted_failOnDataErrors_false() {
33033303 BootstrapperImpl .xdsDataErrorHandlingEnabled = true ;
33043304 // Set failOnDataErrors to false for this test case.
33053305 xdsServerInfo = ServerInfo .create (SERVER_URI , CHANNEL_CREDENTIALS , false ,
3306- true , false , false );
3306+ true , false , false , null );
33073307 BootstrapInfo bootstrapInfo =
33083308 Bootstrapper .BootstrapInfo .builder ()
33093309 .servers (Collections .singletonList (xdsServerInfo ))
@@ -3370,7 +3370,7 @@ public void cdsResourceDeleted_failOnDataErrors_false() {
33703370 public void ldsResourceNacked_withFailOnDataErrors_dropsResource () {
33713371 BootstrapperImpl .xdsDataErrorHandlingEnabled = true ;
33723372 xdsServerInfo = ServerInfo .create (SERVER_URI , CHANNEL_CREDENTIALS , false ,
3373- true , false , true );
3373+ true , false , true , null );
33743374 BootstrapInfo bootstrapInfo =
33753375 Bootstrapper .BootstrapInfo .builder ()
33763376 .servers (Collections .singletonList (xdsServerInfo ))
@@ -3419,7 +3419,7 @@ public void ldsResourceNacked_withFailOnDataErrors_dropsResource() {
34193419 public void ldsResourceNacked_withFailOnDataErrorsDisabled_isAmbientError () {
34203420 BootstrapperImpl .xdsDataErrorHandlingEnabled = true ;
34213421 xdsServerInfo = ServerInfo .create (SERVER_URI , CHANNEL_CREDENTIALS , false ,
3422- true , false , false );
3422+ true , false , false , null );
34233423 BootstrapInfo bootstrapInfo =
34243424 Bootstrapper .BootstrapInfo .builder ()
34253425 .servers (Collections .singletonList (xdsServerInfo ))
@@ -3852,7 +3852,7 @@ public void flowControlAbsent() throws Exception {
38523852 public void resourceTimerIsTransientError_schedulesExtendedTimeout () {
38533853 BootstrapperImpl .xdsDataErrorHandlingEnabled = true ;
38543854 ServerInfo serverInfo = ServerInfo .create (SERVER_URI , CHANNEL_CREDENTIALS ,
3855- false , true , true , false );
3855+ false , true , true , false , null );
38563856 BootstrapInfo bootstrapInfo =
38573857 Bootstrapper .BootstrapInfo .builder ()
38583858 .servers (Collections .singletonList (serverInfo ))
@@ -3897,7 +3897,7 @@ public void resourceTimerIsTransientError_schedulesExtendedTimeout() {
38973897 public void resourceTimerIsTransientError_callsOnErrorUnavailable () {
38983898 BootstrapperImpl .xdsDataErrorHandlingEnabled = true ;
38993899 xdsServerInfo = ServerInfo .create (SERVER_URI , CHANNEL_CREDENTIALS , ignoreResourceDeletion (),
3900- true , true , false );
3900+ true , true , false , null );
39013901 BootstrapInfo bootstrapInfo =
39023902 Bootstrapper .BootstrapInfo .builder ()
39033903 .servers (Collections .singletonList (xdsServerInfo ))
@@ -5127,7 +5127,7 @@ private XdsClientImpl createXdsClient(String serverUri) {
51275127 private BootstrapInfo buildBootStrap (String serverUri ) {
51285128
51295129 ServerInfo xdsServerInfo = ServerInfo .create (serverUri , CHANNEL_CREDENTIALS ,
5130- ignoreResourceDeletion (), true , false , false );
5130+ ignoreResourceDeletion (), true , false , false , null );
51315131
51325132 return Bootstrapper .BootstrapInfo .builder ()
51335133 .servers (Collections .singletonList (xdsServerInfo ))
0 commit comments