1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-01 23:31:41 +01:00

Correct connection string for res queue (#847)

This commit is contained in:
Chad Scharf 2020-08-03 15:22:38 -04:00 committed by GitHub
parent ca224c1782
commit b5ac20ec9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ namespace Bit.Core.Services
public AzureQueueReferenceEventService (
GlobalSettings globalSettings)
{
_queueClient = new QueueClient(globalSettings.Storage.ConnectionString, _queueName);
_queueClient = new QueueClient(globalSettings.Events.ConnectionString, _queueName);
_globalSettings = globalSettings;
}