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
{{ message }}
This repository has been archived by the owner on Jul 27, 2023. It is now read-only.
With Consul 0.8 the uiDir attribute isn't needed anymore (Consul actually gives alerts about this in its logging if you do) - but removing that parameter gives an error in this client when requesting the agent (AgentClient.getAgent)
The error that is thrown:
Caused by: java.lang.IllegalStateException: Cannot build Config, some of required attributes are not set [uiDir]
at com.orbitz.consul.model.agent.ImmutableConfig$Builder.build(ImmutableConfig.java:2513)
at com.orbitz.consul.model.agent.ImmutableConfig.fromJson(ImmutableConfig.java:2007)
Reason for this - in com.orbitz.consul.model.agent.Config the uiDir-attribute is configured as a required property.
The text was updated successfully, but these errors were encountered:
With Consul 0.8 the uiDir attribute isn't needed anymore (Consul actually gives alerts about this in its logging if you do) - but removing that parameter gives an error in this client when requesting the agent (AgentClient.getAgent)
The error that is thrown:
Caused by: java.lang.IllegalStateException: Cannot build Config, some of required attributes are not set [uiDir]
at com.orbitz.consul.model.agent.ImmutableConfig$Builder.build(ImmutableConfig.java:2513)
at com.orbitz.consul.model.agent.ImmutableConfig.fromJson(ImmutableConfig.java:2007)
Reason for this - in com.orbitz.consul.model.agent.Config the uiDir-attribute is configured as a required property.
The text was updated successfully, but these errors were encountered: