This commit is contained in:
Darshan Patnekar 2024-07-10 09:59:05 -07:00
Родитель db2ed5144a
Коммит 786da2ba3e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -162,7 +162,7 @@ public class AzureCosmosClient extends DB {
}
String uri = this.getStringProperty("azurecosmos.uri", null);
if (primaryKey == null || primaryKey.isEmpty()) {
if (uri == null || uri.isEmpty()) {
throw new DBException("Missing uri required to connect to the database.");
}