dengzhhu653 commented on code in PR #6287:
URL: https://github.com/apache/hive/pull/6287#discussion_r2776635714
##########
standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/handler/AbstractRequestHandler.java:
##########
@@ -321,18 +319,20 @@ protected void afterExecute(A result) throws TException,
IOException {
}
/**
- * Get the prefix for logging the message on polling the operation status.
+ * Get the prefix for logging the message on polling the handler's status.
*
* @return message prefix
*/
protected abstract String getMessagePrefix();
/**
- * Get the message about the operation progress.
+ * Get the handler's progress that will show at the client.
*
* @return the progress
*/
- protected abstract String getRequestProgress();
+ protected String getRequestProgress() {
+ return "Done";
Review Comment:
This is the default for non-async handlers, async handlers should have its
own implementation
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]