JeonDaehong commented on issue #8305:
URL: https://github.com/apache/gravitino/issues/8305#issuecomment-3242308484
@justinmclean
```java
String confPath = System.getenv("GRAVITINO_TEST") == null ? "" : args[0];
```
I’m thinking of changing this part to:
```
String confPath = "";
if (System.getenv("GRAVITINO_TEST") != null) {
if (args.length < 1) {
LOG.error("Missing argument for GRAVITINO_TEST conf path.");
System.exit(1);
}
confPath = args[0];
}
```
Is this okay? Is it safe to use the `exit` method here?
--
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]