зеркало из https://github.com/Azure/YCSB.git
Fixed null check
This commit is contained in:
Родитель
db2ed5144a
Коммит
786da2ba3e
|
@ -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.");
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче