Skip to content

Commit f13ebe9

Browse files
committed
Finished fixing rebase
1 parent 113d7b8 commit f13ebe9

File tree

5 files changed

+31
-3
lines changed

5 files changed

+31
-3
lines changed

xds/src/main/java/io/grpc/xds/client/ControlPlaneClient.java

+2
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,8 @@ void adjustResourceSubscription(XdsResourceType<?> resourceType) {
164164
resources = Collections.emptyList();
165165
}
166166
adsStream.sendDiscoveryRequest(resourceType, resources);
167+
resourceStore.startMissingResourceTimers(resources, resourceType);
168+
167169
if (resources.isEmpty()) {
168170
// The resource type no longer has subscribing resources; clean up references to it
169171
versions.remove(resourceType);

xds/src/main/java/io/grpc/xds/client/XdsClient.java

+7
Original file line numberDiff line numberDiff line change
@@ -447,5 +447,12 @@ Collection<String> getSubscribedResources(
447447
ServerInfo serverInfo, XdsResourceType<? extends ResourceUpdate> type);
448448

449449
Map<String, XdsResourceType<?>> getSubscribedResourceTypesWithTypeUrl();
450+
451+
/**
452+
* For any of the subscribers to one of the specified resources, if there isn't a result or
453+
* an existing timer for the resource, start a timer for the resource.
454+
*/
455+
void startMissingResourceTimers(Collection<String> resourceNames,
456+
XdsResourceType<?> resourceType);
450457
}
451458
}

xds/src/main/java/io/grpc/xds/client/XdsClientImpl.java

+14
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,20 @@ public Collection<String> getSubscribedResources(
201201
return retVal.isEmpty() ? null : retVal;
202202
}
203203

204+
@Override
205+
public void startMissingResourceTimers(Collection<String> resourceNames,
206+
XdsResourceType<?> resourceType) {
207+
Map<String, ResourceSubscriber<? extends ResourceUpdate>> subscriberMap =
208+
resourceSubscribers.get(resourceType);
209+
210+
for (String resourceName : resourceNames) {
211+
ResourceSubscriber<?> subscriber = subscriberMap.get(resourceName);
212+
if (subscriber.respTimer == null && !subscriber.hasResult()) {
213+
subscriber.restartTimer();
214+
}
215+
}
216+
}
217+
204218
// As XdsClient APIs becomes resource agnostic, subscribed resource types are dynamic.
205219
// ResourceTypes that do not have subscribers does not show up in the snapshot keys.
206220
@Override

xds/src/test/java/io/grpc/xds/CsdsServiceTest.java

+6
Original file line numberDiff line numberDiff line change
@@ -503,6 +503,12 @@ public Collection<String> getSubscribedResources(
503503
return null;
504504
}
505505

506+
@Override
507+
public void startMissingResourceTimers(Collection<String> resourceNames,
508+
XdsResourceType<?> resourceType) {
509+
// do nothing
510+
}
511+
506512
@Override
507513
public Map<String, XdsResourceType<?>> getSubscribedResourceTypesWithTypeUrl() {
508514
return ImmutableMap.of();

xds/src/test/java/io/grpc/xds/GrpcXdsClientImplTestBase.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -3725,8 +3725,7 @@ public void streamClosedAndRetryRaceWithAddRemoveWatchers() {
37253725
}
37263726

37273727
@Test
3728-
public void streamClosedAndRetryRestartsResourceInitialFetchTimerForUnresolvedResources()
3729-
throws InterruptedException {
3728+
public void streamClosedAndRetryRestartsResourceInitialFetchTimerForUnresolvedResources() {
37303729
xdsClient.watchXdsResource(XdsListenerResource.getInstance(), LDS_RESOURCE, ldsResourceWatcher);
37313730
xdsClient.watchXdsResource(XdsRouteConfigureResource.getInstance(), RDS_RESOURCE,
37323731
rdsResourceWatcher);
@@ -3762,7 +3761,7 @@ public void streamClosedAndRetryRestartsResourceInitialFetchTimerForUnresolvedRe
37623761
verify(ldsResourceWatcher, never()).onError(errorCaptor.capture());
37633762
verify(rdsResourceWatcher, never()).onError(errorCaptor.capture());
37643763
verify(cdsResourceWatcher, never()).onError(errorCaptor.capture());
3765-
3764+
verify(edsResourceWatcher, never()).onError(errorCaptor.capture());
37663765
// Check metric data.
37673766
callback_ReportServerConnection();
37683767
verifyServerConnection(4, true, xdsServerInfo.target());

0 commit comments

Comments
 (0)