You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/ConsulDiscoveryClient.java
Copy file name to clipboardExpand all lines: spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/ConsulDiscoveryProperties.java
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -205,6 +205,12 @@ public class ConsulDiscoveryProperties {
205
205
*/
206
206
privateintorder = 0;
207
207
208
+
/**
209
+
* Enable merge consul tag data with metadata to create service instance (defaults
210
+
* to false).
211
+
*/
212
+
privatebooleanenableTagMerge = false;
213
+
208
214
@SuppressWarnings("unused")
209
215
privateConsulDiscoveryProperties() {
210
216
this.managementTags.add(MANAGEMENT);
@@ -580,6 +586,14 @@ public void setManagementEnableTagOverride(Boolean managementEnableTagOverride)
Copy file name to clipboardExpand all lines: spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/ConsulServiceInstance.java
Copy file name to clipboardExpand all lines: spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/reactive/ConsulReactiveDiscoveryClient.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,8 @@ public Flux<ServiceInstance> getInstances(String serviceId) {
0 commit comments