feathersjs-ecosystem / feathers-sync

Synchronize service events between Feathers application instances
MIT License
221 stars 41 forks source link

On V5 Dove, service details missing in calls #184

Closed MarcGodard closed 1 year ago

MarcGodard commented 1 year ago

Steps to reproduce

Create a feathers server with channels.

Open 2 browsers and create events on one.

image

This is what you see.

Turn on DB Sync with the following code:

  app.configure(sync({
    uri: syncDB,
    serialize: stringify,
    deserialize: parse,
  }))

Then create a bunch of events and you get:

image

Which means none of my feathersClient.service(service).on(method, callback) are working.

I noticed someone else claimed that it was working in their V5, however just the difference in the socket data above I can say something is wrong.

daffl commented 1 year ago

This should be fixed now in v3.0.2