-
Notifications
You must be signed in to change notification settings - Fork 265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
transaction end moved up one level #480
Conversation
I have done the following test with bug/478_transaction_up_level branch. Create one entity (Room1), create 3 subscriptions ONCHANGE on that entity. Then, do an update an get the following log trace:
The notification failure message is normal (given that I've run the test without setting proper receptors). However, what is weird are the two messages associated to trans 1406657233-130-00000000005 after the "Transaction ended" message. The problem seems to be difficult to solve with the current approach, given that notification and updateContext procesing live (where I guess the transaction end message is printed) in different threads. Alternatives:
Except if 2 is easy, I'll suggest going for 3. Not sure if for 0.14.1 (we are running out of time) or for the next release (assuming this as a bug to be solved in 0.14.1_next). |
transaction end moved up one level
Description
transaction end moved up one level, and all those "lower level invocations" have been removed.
Solves #478