Skip to content

Commit 3a8d2fb

Browse files
authored
Merge pull request #163 from profusion/fix-listeners-key
Fix subscription listeners key
2 parents 17b8df6 + 8e7e8c9 commit 3a8d2fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/graphqlservice/GraphQLService.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1002,7 +1002,7 @@ class Request : public std::enable_shared_from_this<Request>
10021002
const TypeMap _operations;
10031003
std::unique_ptr<ValidateExecutableVisitor> _validation;
10041004
internal::sorted_map<SubscriptionKey, std::shared_ptr<SubscriptionData>> _subscriptions;
1005-
internal::string_view_map<internal::sorted_set<SubscriptionKey>> _listeners;
1005+
internal::sorted_map<SubscriptionName, internal::sorted_set<SubscriptionKey>> _listeners;
10061006
SubscriptionKey _nextKey = 0;
10071007
};
10081008

0 commit comments

Comments
 (0)