Skip to content

Commit

Permalink
chore: added eds source for eds attributes (#53)
Browse files Browse the repository at this point in the history
* chore: added eds source for eds attributes

* chore: update entity clients version

Co-authored-by: Aaron Steinfeld <[email protected]>
  • Loading branch information
skjindal93 and aaron-steinfeld authored Apr 16, 2021
1 parent 61d8298 commit aab8592
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions config-bootstrapper/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ tasks.register<DockerStopContainer>("stopAttributeServiceContainer") {
}

tasks.register<DockerPullImage>("pullEntityServiceImage") {
image.set("hypertrace/entity-service:0.6.0")
image.set("hypertrace/entity-service:0.6.4")
}

tasks.register<DockerCreateContainer>("createEntityServiceContainer") {
Expand Down Expand Up @@ -126,8 +126,8 @@ tasks.test {
}

dependencies {
implementation("org.hypertrace.entity.service:entity-service-client:0.6.0")
implementation("org.hypertrace.entity.service:entity-service-api:0.6.0")
implementation("org.hypertrace.entity.service:entity-service-client:0.6.4")
implementation("org.hypertrace.entity.service:entity-service-api:0.6.4")
implementation("org.hypertrace.core.documentstore:document-store:0.5.4")
implementation("org.hypertrace.core.attribute.service:attribute-service-client:0.11.0")
implementation("org.hypertrace.core.grpcutils:grpc-context-utils:0.4.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ commands = [
display_name: Endpoint ID,
scope: API,
type: ATTRIBUTE,
sources: [QS]
sources: [QS, EDS]
},
{
fqn: API.name,
key: name,
value_kind: TYPE_STRING,
display_name: Endpoint Name,
scope: API,
sources: [QS],
sources: [QS, EDS],
type: ATTRIBUTE
},
{
Expand All @@ -52,15 +52,15 @@ commands = [
display_name: Endpoint Discovery State,
scope: API,
type: ATTRIBUTE,
sources: [EDS, QS]
sources: [QS, EDS]
},
{
fqn: API.is_external,
key: isExternal,
value_kind: TYPE_BOOL,
display_name: Is Endpoint External,
scope: API,
sources: [QS],
sources: [QS, EDS],
type: ATTRIBUTE
},
{
Expand All @@ -87,7 +87,7 @@ commands = [
value_kind: TYPE_STRING,
display_name: Service Name,
scope: API,
sources: [QS],
sources: [QS, EDS],
type: ATTRIBUTE
},
{
Expand All @@ -96,7 +96,7 @@ commands = [
value_kind: TYPE_STRING,
display_name: Service ID,
scope: API,
sources: [QS],
sources: [QS, EDS],
type: ATTRIBUTE
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ commands = [
value_kind: TYPE_STRING,
display_name: Service ID,
scope: SERVICE,
sources: [QS],
sources: [QS, EDS],
type: ATTRIBUTE
},
{
Expand All @@ -32,7 +32,7 @@ commands = [
value_kind: TYPE_STRING,
display_name: Service Name,
scope: SERVICE,
sources: [QS],
sources: [QS, EDS],
type: ATTRIBUTE,
definition: {
source_path: SERVICE_NAME
Expand Down

0 comments on commit aab8592

Please sign in to comment.