We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
To reproduce from the REPL, do:
(require '[schism.core :as schism]) (let [m1 (schism/with-node "LOCAL" (schism/convergent-map :foo "bar", :a "b")) ;; Force m2's updates to occur after m1's updates _ (Thread/sleep 1) m2 (schism/with-node "NOT LOCAL" (schism/convergent-map :y 2, :z 3, :x 1))] (schism/with-node "LOCAL" (schism/converge m2 m1)))
The text was updated successfully, but these errors were encountered:
Resolves aredington#4; guards synchronize operation inside schema.cor…
2eef88a
…e/converge against the case where c1 is from a remote node.
Sigh. Dupe of #3
Sorry, something went wrong.
No branches or pull requests
To reproduce from the REPL, do:
The text was updated successfully, but these errors were encountered: