mirror of
https://github.com/happyfish100/fastdfs-client-java.git
synced 2026-09-17 17:29:00 +00:00
bugfixed: loadStorageServersFromTracker correctly with rw option
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
|
||||
Version 1.38 2025-11-27
|
||||
* bugfixed: loadStorageServersFromTracker correctly with rw option
|
||||
|
||||
Version 1.37 2025-11-06
|
||||
* query file info support two combined flags:
|
||||
ProtoCommon.FDFS_QUERY_FINFO_FLAGS_NOT_CALC_CRC32
|
||||
|
||||
@@ -106,7 +106,7 @@ public class ClientGlobal {
|
||||
String[] ipAddresses = new String[lines.length];
|
||||
for (String line : lines) {
|
||||
String[] cols = line.split(" ");
|
||||
if (cols.length != 3) {
|
||||
if (!(cols.length == 3 || cols.length == 4)) {
|
||||
throw new MyException("invalid line: " + line);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user