Skip to content

Commit fa37730

Browse files
authored
Merge pull request #13 from hypertrace/fix-env-conflicts
avoids name clashes between kube envs vs app envs
2 parents 499525e + 7aa3d65 commit fa37730

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

hypertrace-trace-enricher/src/main/resources/configs/common/application.conf

+6-6
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ enricher {
5252
class = "org.hypertrace.traceenricher.enrichment.enrichers.DefaultServiceEntityEnricher"
5353
entity.service.config = {
5454
host = localhost
55-
host = ${?ENTITY_SERVICE_HOST}
55+
host = ${?ENTITY_SERVICE_HOST_CONFIG}
5656
port = 50061
57-
port = ${?ENTITY_SERVICE_PORT}
57+
port = ${?ENTITY_SERVICE_PORT_CONFIG}
5858
}
5959
dependencies = ["ApiBoundaryTypeAttributeEnricher"]
6060
}
@@ -85,9 +85,9 @@ enricher {
8585
class = "org.hypertrace.traceenricher.enrichment.enrichers.BackendEntityEnricher"
8686
entity.service.config = {
8787
host = localhost
88-
host = ${?ENTITY_SERVICE_HOST}
88+
host = ${?ENTITY_SERVICE_HOST_CONFIG}
8989
port = 50061
90-
port = ${?ENTITY_SERVICE_PORT}
90+
port = ${?ENTITY_SERVICE_PORT_CONFIG}
9191
}
9292
dependencies = ["DefaultServiceEntityEnricher"]
9393
}
@@ -106,9 +106,9 @@ enricher {
106106
dependencies = ["DefaultServiceEntityEnricher", "ApiBoundaryTypeAttributeEnricher"]
107107
entity.service.config = {
108108
host = localhost
109-
host = ${?ENTITY_SERVICE_HOST}
109+
host = ${?ENTITY_SERVICE_HOST_CONFIG}
110110
port = 50061
111-
port = ${?ENTITY_SERVICE_PORT}
111+
port = ${?ENTITY_SERVICE_PORT_CONFIG}
112112
}
113113
}
114114
}

0 commit comments

Comments
 (0)