So I can my changes code to work locally using SignalR, but it seems to not work with RavenHQ. Is that disabled by any chance? The first half of my code (saving a document) works, it is the changes handling that never fires.
Date
Votes
1 comment
-
Khalid This is a really simple fix. Make sure you specify the database name, by default RavenDB is monitoring the system database (which is not available to RavenHQ members).
Previous code:
RavenDbConfiguration.DocumentStore
.Changes()
.ForDocumentsStartingWith("thoughts")
.Subscribe(change =>Fixed code:
RavenDbConfiguration.DocumentStore
.Changes(database) // database name, find it in your account
.ForDocumentsStartingWith("thoughts")
.Subscribe(change =>
Please sign in to leave a comment.