Pradeep Prabhu
Pradeep Prabhu

Reputation: 25

Getting transport error while watching the document in stitch

When I watch the certain ids in the collection using MongoDB watch I am getting error

ERROR Error: Uncaught (in promise): e: (TRANSPORT_ERROR): the request transport encountered an error communicating with Stitch: event source failed to open and will not reconnect; check network log for more details e: (TRANSPORT_ERROR): the request transport encountered an error communicating with Stitch: event source failed to open and will not reconnect; check network log for more details

It was working till yesterday it started from today

            const db = mongoClient.db(environment.databaseName);
            const comments = db.collection('collectionName');

            this.changeStream = await comments.watch(ids);
            this.changeStream.onNext((event) => {
                console.log('Watched document changed:', event);
                this.fetchData();

            });

I expect that whenever the document is changed in the list of ids. Change event should trigger.

Upvotes: 0

Views: 309

Answers (1)

Kisinga
Kisinga

Reputation: 1729

This indicates that your app is unable to communicate with the stitch backend, probably because of not internet or poor network

Upvotes: 1

Related Questions