v4 4.1.0 SDK hangs with default configuration if Log level is set to DEBUG.
just run the following code against an existing database and container. container.createItem(.) will never succeed.
CosmosAsyncClient client = new CosmosClientBuilder()
.endpoint(TestConfigurations.HOST)
.key(TestConfigurations.MASTER_KEY)
.consistencyLevel(ConsistencyLevel.EVENTUAL)
.buildAsyncClient();
// let's assume database and container already exist
CosmosAsyncContainer container = client.getDatabase(dbName).getContainer(containerName);
POJO pojo = new POJO();
pojo.id = UUID.randomUUID().toString();
pojo.prop = UUID.randomUUID().toString();
container.createItem(pojo).block();
v4 4.1.0 SDK hangs with default configuration if Log level is set to DEBUG.
just run the following code against an existing database and container.
container.createItem(.)will never succeed.