This is an automated email from the ASF dual-hosted git repository. jackie pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git
The following commit(s) were added to refs/heads/master by this push: new 7fb65f0 Update ExecutionStats.java (#7146) 7fb65f0 is described below commit 7fb65f0beec8e0758ed8101b6536ace6e468f8a8 Author: Bilal Munir Mughal <bilalmu...@users.noreply.github.com> AuthorDate: Thu Jul 8 18:03:27 2021 -0700 Update ExecutionStats.java (#7146) Make ExecutionStats public to that stats can be used for post-processing. --- .../src/main/java/org/apache/pinot/client/ExecutionStats.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pinot-clients/pinot-java-client/src/main/java/org/apache/pinot/client/ExecutionStats.java b/pinot-clients/pinot-java-client/src/main/java/org/apache/pinot/client/ExecutionStats.java index 0ad420c..f12ee37 100644 --- a/pinot-clients/pinot-java-client/src/main/java/org/apache/pinot/client/ExecutionStats.java +++ b/pinot-clients/pinot-java-client/src/main/java/org/apache/pinot/client/ExecutionStats.java @@ -29,7 +29,7 @@ import java.util.Map; * <p>Please note that objects of this class will hold a reference to the given JsonNode object * and that will only be released when the object is GC'ed.</p> */ -class ExecutionStats { +public class ExecutionStats { private static final String NUM_SERVERS_QUERIED = "numServersQueried"; private static final String NUM_SERVERS_RESPONDED = "numServersResponded"; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org