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 Aug 29, 2024. It is now read-only.
Hello, before I used "azure-documentdb" dependency and proxy configuration worked good. But now I need to use "spring-data-cosmosdb" version 3.0.0.M1 and :
ConnectionPolicy connectionPolicy = new ConnectionPolicy();
connectionPolicy.setProxy("127.0.0.1",3128);
return DocumentDBConfig.builder(host, primaryKey, databaseName)
.connectionPolicy(connectionPolicy)
.consistencyLevel(ConsistencyLevel.Session)
.build();
This configuration is not working. When I try to run application it is logs with error java.net.UnknownHostException.
Please help me.
Thanks
The text was updated successfully, but these errors were encountered:
Hello, before I used "azure-documentdb" dependency and proxy configuration worked good. But now I need to use "spring-data-cosmosdb" version 3.0.0.M1 and :
ConnectionPolicy connectionPolicy = new ConnectionPolicy();
connectionPolicy.setProxy("127.0.0.1",3128);
return DocumentDBConfig.builder(host, primaryKey, databaseName)
.connectionPolicy(connectionPolicy)
.consistencyLevel(ConsistencyLevel.Session)
.build();
This configuration is not working. When I try to run application it is logs with error java.net.UnknownHostException.
Please help me.
Thanks
The text was updated successfully, but these errors were encountered: