You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently rele's subscription model only supports consuming messages that are json deserializable.
Unfortunately some of GCP's core services publish non-json messages. For example, the gcp dicom store publishes notifications to a topic when a new dicom instance was inserted, but the message field is just the dicom instance path. When attempting to consume these messages through rele, we get the following error.
By default, I would expect the current behaviour. But for some use cases, like @csaroff 's , you may want to control the deserialization logic yourself.
Currently rele's subscription model only supports consuming messages that are json deserializable.
Unfortunately some of GCP's core services publish non-json messages. For example, the gcp dicom store publishes notifications to a topic when a new dicom instance was inserted, but the message field is just the dicom instance path. When attempting to consume these messages through rele, we get the following error.
Can we add an option to disable deserialization of these messages? Something like:
The text was updated successfully, but these errors were encountered: