adoroszlai commented on code in PR #8041:
URL: https://github.com/apache/ozone/pull/8041#discussion_r1988892941
##########
hadoop-ozone/dist/src/shell/ozone/ozone:
##########
@@ -83,10 +82,6 @@ function ozonecmd_case
RATIS_OPTS="-Dorg.apache.ratis.thirdparty.io.netty.allocator.useCacheForAllThreads=false
${RATIS_OPTS}"
case ${subcmd} in
- auditparser)
- OZONE_CLASSNAME=org.apache.hadoop.ozone.audit.parser.AuditParser
- OZONE_RUN_ARTIFACT_NAME="ozone-tools"
- ;;
Review Comment:
Should we add a compatibility hack to handle the old command (without
including it in the usage help)?
Something like:
```bash
OZONE_SUBCMD=$1
if [[ "$OZONE_SUBCMD" == "auditparser" ]]; then
OZONE_SUBCMD=debug
else
shift
fi
```
at:
https://github.com/apache/ozone/blob/1202f6df15d7b61f9a2326f73dd4d0ed2aab258c/hadoop-ozone/dist/src/shell/ozone/ozone#L311-L312
--
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]