fix worker category on Indexer node (#9510)

This commit is contained in:
Himanshu 2020-03-12 14:11:02 -07:00 committed by GitHub
parent ff59d2e78b
commit 1ba1a3c523
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -168,7 +168,7 @@ public class CliIndexer extends ServerRunnable
config.getIp(),
config.getCapacity(),
config.getVersion(),
WorkerConfig.DEFAULT_CATEGORY
config.getCategory()
);
}
@ -180,7 +180,7 @@ public class CliIndexer extends ServerRunnable
workerConfig.getIp(),
workerConfig.getCapacity(),
workerConfig.getVersion(),
WorkerConfig.DEFAULT_CATEGORY
workerConfig.getCategory()
);
}