When debug in chrome starts

Are you able to reproduce this issue? If so can you provide the steps to do so?
Were you able to figure this out?
getting the same error for android simulator but not for ios. works on real device though.
@suhodolskiy can you please tell how you solved this?
@amanthegreatone Getting the same error as well. Looking to consistently reproduce. Were you able to solve this?
I am getting same issue below is my code
"react-native": "0.47.1",
"realm": "^1.11.1",
platform: android
let realm = new Realm({ schema: [RecipesSchema] });
let allRecipes = realm.objects('Recipes');
Very ugly workaround:
node_modules/realm/lib/browser/rpc.js
// Reset the callback poll interval to 10ms every time we either hit a
// callback or call any other method, and double it each time we poll
// for callbacks and get nothing until it's over a second.
if (__DEV__) {
pollTimeout = 99999;
} else {
if (callback || command !== 'callbacks_poll') {
pollTimeout = 10;
}
else if (pollTimeout < 1000) {
pollTimeout *= 2;
}
}
This error always appear for me in android emulator.
Please re-open this issue.
@danijel1108 This issue is old. Please recreate with full reprocase of how to reproduce this.
When I enable remote debug option then I'm getting always "Invalid Session ID".
I tried with @LeonidVeremchuk 's solution but it doesn't helpful for me.
Please let me know how to fix it.
Thank you so much for your reply.
Sorry I wasn't clear. Please create a new github issue will full instructions on how to replicate your issue. Thanks!
@danijel1108 if you installed another lib that depends on a different version of realm that could be the reason why you still have this issue !
Most helpful comment
getting the same error for android simulator but not for ios. works on real device though.
@suhodolskiy can you please tell how you solved this?