jetcd
jetcd copied to clipboard
etcd java client
**Versions** - etcd: 3.5.1 - jetcd: 0.7.3 - java: 11.0.8 **Describe the bug** I don't know if it's a bug or a miss usage of the jetcd sdk but since...
i write a simple test demo , an error occured when getFuture. Here's my code: public static void main(String[] args) { Client client = Client.builder().endpoints("http://my-ip:2379").build(); KV kvClient = client.getKVClient(); ByteSequence...
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - No. **Describe the...
I use remote docker for testcontainer to run unit test and i just got the error: ``` Caused by: com.github.dockerjava.api.exception.InternalServerErrorException: Status 500: {"message":"invalid volume specification: 'C:\\Users\\Administrator\\AppData\\Local\\Temp\\jetcd_test_etcd0_8631704060335352785:/data.etcd:rw,z'"} ``` So i add...
**Versions** - etcd: 3.5.3 - jetcd: 7.5 - java: jdk21 **Describe the bug** progrem code like this: GetOption op = GetOption.newBuilder().isPrefix(true).build(); CompletableFuture getFuture= EtcdFactory.getKVClient().get(EtcdFactory.bytesOf(EtcdConstant.KEYPREFIX_PRODUCER),op); GetResponse response = null; try {...
**Versions** - etcd: 3.5 -jetcd: 0.5.11 -java: jdk11 **Describe the bug** The format of the response of the jetcd watch function is not my want, Is there any configuration in...
client.getKVClient() .get(EtcdTemplate.toByteSequence("cd"), GetOption.builder().build()) .get() (3 line) ClientBuilder i set connectTimeout = 30 s keepaliveTimeout = 30s keepaliveTime =30 s When the network is abnormal, I find that the 3line .get()...
**Versions** - etcd: _3.5.10_ - jetcd: _0.7.7_ - java: _21_ **Describe the bug** At the end of unit tests when using jetcd-tests, an error `io.etcd.jetcd.launcher.EtcdContainer -- Error deleting directory` is...
**Versions** - etcd: 3.3.12 - jetcd: 0.0.2 - java: 8 Hi guys, I was facing an issue exactly same with #291 , the issue was closed without resolving. Does anybody...
**Is your feature request related to a problem? Please describe.** I am currently encountering a limitation with the jetcd (Java client for etcd) regarding lock acquisition functionality. I am in...