This commit is contained in:
Isaac 2018-11-30 15:51:44 -08:00
Родитель 8732dafa9d
Коммит 841b7215d3
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -75,7 +75,7 @@ namespace Microsoft.Azure.IoTSolutions.AsaManager.Services.Storage
using (var client = new DocumentClient(uri, authKey, ConnectionPolicy.Default, consistencyLevel))
{
await client.CreateDocumentCollectionIfNotExistsAsync(
$"/dbs/{database}",
UriFactory.CreateDatabaseUri(database),
new DocumentCollection { Id = collection },
new RequestOptions { OfferThroughput = RUs });
}
@ -85,7 +85,7 @@ namespace Microsoft.Azure.IoTSolutions.AsaManager.Services.Storage
{
using (var client = new DocumentClient(uri, authKey, ConnectionPolicy.Default))
{
await client.ReadDatabaseAsync(database);
await client.ReadDatabaseAsync(UriFactory.CreateDatabaseUri(database));
}
}
}

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

@ -64,7 +64,7 @@ namespace Microsoft.Azure.IoTSolutions.UIConfig.Services
// Check access to Auth
var authResult = await this.PingServiceAsync(
authName,
this.servicesConfig.DeviceSimulationApiUrl);
this.servicesConfig.UserManagementApiUrl);
SetServiceStatus(authName, authResult, result, errors);
// Add properties