Alluxio/Community

Deprecate Throwables.propagate with RuntimeException in CommandUtils.java

Closed this issue · 0 comments

Guava "Throwables.propagate" is deprecated. see reasons in
https://github.com/google/guava/wiki/Why-we-deprecated-Throwables.propagate

This ticket modifies https://github.com/Alluxio/alluxio/blob/cf47f8ba1761490340c9684aee24377a2cd492c2/core/common/src/main/java/alluxio/cli/CommandUtils.java#L53 to replace

throw Throwables.propagate(e);

or

Throwables.propagate(e);

with

throw new RuntimeException(e);

Remember also to remove the corresponding import if Throwables becomes unused

import com.google.common.base.Throwables;