Replies: 3 comments
-
|
Yes it is possible, please have a look at the test cases |
Beta Was this translation helpful? Give feedback.
-
|
Hi ClientBuilder builder = Client.builder();
builder.endpoints(config.getEndPoints());
Client client = builder..build();
MemberListResponse memberListResponse = clusterClient.listMember().get();It failed with previous error. Is there anything wrong? |
Beta Was this translation helpful? Give feedback.
-
|
The set-up does not seem to be wrong, I've added a test for this case: https://github.com/etcd-io/jetcd/blob/master/jetcd-core/src/test/java/io/etcd/jetcd/ClusterClientTest.java#L54-L65 Maybe you need to check how the etcd server is configured, maybe it requires authentication ? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi
I just want to use jetcd as a client to connect server which auth is disabled and no need to put username and password in the client.
Is it possible to do this? I try but fail with error.
Beta Was this translation helpful? Give feedback.
All reactions