We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 286b9fe commit 5ae4acbCopy full SHA for 5ae4acb
src/providers/WorkflowCore.Persistence.MongoDB/Services/MongoPersistenceProvider.cs
@@ -111,8 +111,8 @@ static void CreateIndexes(MongoPersistenceProvider instance)
111
112
instance.EventSubscriptions.Indexes.CreateOne(new CreateIndexModel<EventSubscription>(
113
Builders<EventSubscription>.IndexKeys
114
- .Ascending(x => x.EventName)
115
.Ascending(x => x.EventKey)
+ .Ascending(x => x.EventName)
116
.Ascending(x => x.SubscribeAsOf)
117
.Ascending(x => x.ExternalToken),
118
new CreateIndexOptions { Background = true, Name = "idx_namekey_v2" }));
0 commit comments