HDFS-9739. DatanodeStorage.isValidStorageId() is broken (Contributed by Mingliang Liu)
This commit is contained in:
parent
04375756a5
commit
d6b1acb940
|
@ -93,6 +93,7 @@ public class DatanodeStorage {
|
|||
try {
|
||||
// Attempt to parse the UUID.
|
||||
if (storageID != null && storageID.indexOf(STORAGE_ID_PREFIX) == 0) {
|
||||
UUID.fromString(storageID.substring(STORAGE_ID_PREFIX.length()));
|
||||
return true;
|
||||
}
|
||||
} catch (IllegalArgumentException ignored) {
|
||||
|
|
|
@ -2690,6 +2690,9 @@ Release 2.8.0 - UNRELEASED
|
|||
HDFS-9718. HAUtil#getConfForOtherNodes should unset independent generic keys
|
||||
before initialize (DENG FEI via vinayakumarb)
|
||||
|
||||
HDFS-9739. DatanodeStorage.isValidStorageId() is broken
|
||||
(Mingliang Liu via vinayakumarb)
|
||||
|
||||
Release 2.7.3 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
Loading…
Reference in New Issue