boglesby commented on a change in pull request #7035:
URL: https://github.com/apache/geode/pull/7035#discussion_r735835799
##########
File path:
geode-core/src/main/java/org/apache/geode/internal/cache/wan/parallel/ParallelGatewaySenderQueue.java
##########
@@ -489,7 +489,21 @@ public void
addShadowPartitionedRegionForUserPR(PartitionedRegion userPR,
boolean isAccessor = (userPR.getLocalMaxMemory() == 0);
final String prQName = sender.getId() + QSTRING +
convertPathToName(userPR.getFullPath());
- prQ = (PartitionedRegion) cache.getRegion(prQName);
+
+ prQ = (PartitionedRegion) cache.getRegion(prQName, true);
+ if (prQ != null && prQ.isDestroyed()) {
+ PartitionedRegion oldPrQ = prQ;
+ while (oldPrQ == prQ) {
+ try {
+ Thread.sleep(50);
+ } catch (InterruptedException e) {
+ Thread.currentThread().interrupt();
+ }
+ logger.info("wait for destroy to finish");
+
+ prQ = (PartitionedRegion) cache.getRegion(prQName, true);
+ }
+ }
Review comment:
Can the region get into a state where it is never destroyed? You might
need a way to break out of this loop.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]