Skip to content

Commit

Permalink
[1.3_beta][fix path to relative]
Browse files Browse the repository at this point in the history
  • Loading branch information
wangchuanpoxiao committed Oct 24, 2022
1 parent 2f05566 commit 68c85f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class KerberosConfigUtil {
*/
public static void changeToRelativePath(Map<String, Object> kerberosConfig, String checkKey) {
String path = MapUtils.getString(kerberosConfig, checkKey);
if (StringUtils.isBlank(path) || path.contains("/")) {
if (StringUtils.isBlank(path) || !path.contains("/")) {
return;
}
String[] splitPathArr = path.split("/");
Expand Down

0 comments on commit 68c85f4

Please sign in to comment.