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
The thing is, updateEntry never affects the DB when insertNewEntry has been run. However if the entry is already inserted (after a repeat) and we only need to update, it works fine.
Hi @davidmoten
Being pleased with rxjava-jdbc I've been doing my latest app using rxjava2-jdbc. Thanks for bringing this to us! As always it's really helpful.
However, I've hit some issue when using transactions. I have the following code:
Those methods are chained using
compose
andflatMaps
in processing "pipeline" which goal is to keep data synced between multiple services.My stream ends with a retry/repeat to make "daemon-like".
The thing is,
updateEntry
never affects the DB wheninsertNewEntry
has been run. However if the entry is already inserted (after a repeat) and we only need to update, it works fine.So I tried removing the transaction:
And now
updateEntry
works one the first run wheninsertNewEntry
is ran before.Any idea what may be going on ?
Thanks alot !
The text was updated successfully, but these errors were encountered: