Skip to content

Commit

Permalink
0005511: Error request path not supported for /server/config
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Oct 4, 2022
1 parent 0403cd6 commit 8cfd029
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -484,7 +484,7 @@ public List<IncomingBatch> loadDataFromOfflineTransport(Node remote, RemoteNodeS
}

public void loadDataFromConfig(Node remote, RemoteNodeStatus status, boolean force) throws IOException {
if (engine.getParameterService().isRegistrationServer()) {
if (engine.getParameterService().isRegistrationServer() || remote == null || Version.isOlderThanVersion(remote.getSymmetricVersion(), "3.8.22")) {
return;
}
Node local = nodeService.findIdentity();
Expand Down

0 comments on commit 8cfd029

Please sign in to comment.