This is an automated email from the ASF dual-hosted git repository.
fjy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git
The following commit(s) were added to refs/heads/master by this push:
new 9468df4 make phaser of ReferenceCountingCloseableObject protected
instead of private so subclasses can do stuff with it (#10035)
9468df4 is described below
commit 9468df4721c478a9c96ed2ce713c4ee79f2bb99c
Author: Clint Wylie <[email protected]>
AuthorDate: Mon Jun 15 19:56:49 2020 -0700
make phaser of ReferenceCountingCloseableObject protected instead of
private so subclasses can do stuff with it (#10035)
---
.../java/org/apache/druid/segment/ReferenceCountingCloseableObject.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/processing/src/main/java/org/apache/druid/segment/ReferenceCountingCloseableObject.java
b/processing/src/main/java/org/apache/druid/segment/ReferenceCountingCloseableObject.java
index db37fc5..af0e1c7 100644
---
a/processing/src/main/java/org/apache/druid/segment/ReferenceCountingCloseableObject.java
+++
b/processing/src/main/java/org/apache/druid/segment/ReferenceCountingCloseableObject.java
@@ -41,7 +41,7 @@ public abstract class
ReferenceCountingCloseableObject<BaseObject extends Closea
private static final Logger log = new
Logger(ReferenceCountingCloseableObject.class);
private final AtomicBoolean closed = new AtomicBoolean(false);
- private final Phaser referents = new Phaser(1)
+ protected final Phaser referents = new Phaser(1)
{
@Override
protected boolean onAdvance(int phase, int registeredParties)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]