rsivanov / Rebus.SqlServer.Outbox

Provides an implementation of Rebus.Outbox abstraction using MS SQL Server as an outbox storage
MIT License
5 stars 2 forks source link

Rename variable subscriptionStorage to outboxStorage #3

Closed maulik-modi closed 3 years ago

maulik-modi commented 3 years ago

From var subscriptionStorage = new SqlServerOutboxStorage(connectionFactory, tableName);

            if (automaticallyCreateTables)
            {
                subscriptionStorage.EnsureTableIsCreated();
            }

            return subscriptionStorage;

To var outboxStorage= new SqlServerOutboxStorage(connectionFactory, tableName);

rsivanov commented 3 years ago

Fixed! Thank you.