Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: BackendConfig - namingMap,add default metadata map #12

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
import com.tencent.trpc.core.worker.WorkerPoolManager;
import com.tencent.trpc.core.worker.spi.WorkerPool;
import java.net.InetSocketAddress;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
Expand Down Expand Up @@ -114,7 +115,11 @@ public class BackendConfig extends BaseProtocolConfig {
* The parameters of naming's map and namingUrl together form the naming configuration and put namingOptions
*/
@ConfigProperty(name = "naming_map")
protected Map<String, Object> namingMap = Maps.newHashMap();
protected Map<String, Object> namingMap = new HashMap<String, Object>() {
{
put(Constants.METADATA, Maps.newHashMap());
}
};
/**
* Environment
*/
Expand Down