Getting COLLECTION_MAP_REFRESH_IN_PROGRESS while application startup when we hit multiple get requests
I am using Couchbase java client 3.9.1
I am using the below so that the buckets become available.
ReactiveBucket bucket = cluster.bucket(bucketName);
return bucket.waitUntilReady(Duration.ofSeconds(30))
But even after doing this, I am still getting COLLECTION_MAP_REFRESH_IN_PROGRESS.
How do I make sure that my application starts taking request only after everything is ready?