Skip to content

Instantly share code, notes, and snippets.

@maacl
Created August 25, 2016 05:49
Show Gist options
  • Save maacl/3755445d3ec9563d6ec2d0e2d40d3f5b to your computer and use it in GitHub Desktop.
Save maacl/3755445d3ec9563d6ec2d0e2d40d3f5b to your computer and use it in GitHub Desktop.
CLJ:
```
➜ replikativ-demo git:(master) lein repl
nREPL server started on port 40024 on host 127.0.0.1 - nrepl://127.0.0.1:40024
REPL-y 0.3.7, nREPL 0.2.12
Clojure 1.8.0
OpenJDK 64-Bit Server VM 1.8.0_91-8u91-b14-3ubuntu1~16.04.1-b14
Docs: (doc function-name-here)
(find-doc "part-of-name-here")
Source: (source function-name-here)
Javadoc: (javadoc java-object-or-class-here)
Exit: Control+D or (exit) or (quit)
Results: Stored in vars *1, *2, *3, an exception in *e
user=> (ns replikativ-demo.core
#_=> (:require [replikativ.crdt.cdvcs.realize :refer [head-value stream-into-atom!]]
#_=> [replikativ.crdt.cdvcs.stage :as s]
#_=> [replikativ.stage :refer [create-stage! connect! subscribe-crdts!]]
#_=> [replikativ.peer :refer [client-peer server-peer]]
#_=>
#_=> [kabel.platform :refer [start stop]]
#_=> [konserve.memory :refer [new-mem-store]]
#_=>
#_=> [full.async :refer [<?? <? go-try go-loop-try]] ;; core.async error handling
#_=> [clojure.core.async :refer [chan go-loop go]]))
nil
replikativ-demo.core=> (def uri "ws://127.0.0.1:31744")
#'replikativ-demo.core/uri
replikativ-demo.core=> (def cdvcs-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44")
#'replikativ-demo.core/cdvcs-id
replikativ-demo.core=> (def eval-fns
#_=> ;; the CRDTs are reduced over the transaction history according to this function mapping
#_=> ;; NOTE: this allows you to change reduction semantics of past transactions as well
#_=> {'(fn [_ new] new) (fn [_ new] new)
#_=> '+ +})
#'replikativ-demo.core/eval-fns
replikativ-demo.core=> def server-store (<?? (new-mem-store)))
CompilerException java.lang.RuntimeException: Unable to resolve symbol: def in this context, compiling:(/tmp/form-init4300657142136429475.clj:1:1010)
CompilerException java.lang.RuntimeException: Unable to resolve symbol: server-store in this context, compiling:(/tmp/form-init4300657142136429475.clj:1:1010)
#konserve.memory.MemAsyncKeyValueStore{:state #object[clojure.lang.Atom 0x167c97d5 {:status :ready, :val {}}], :read-handlers #object[clojure.lang.Atom 0x4fcf221e {:status :ready, :val {}}], :write-handlers #object[clojure.lang.Atom 0x6fe77f62 {:status :ready, :val {}}]}
replikativ-demo.core=> RuntimeException Unmatched delimiter: ) clojure.lang.Util.runtimeException (Util.java:221)
replikativ-demo.core=> (def server-store (<?? (new-mem-store)))
#'replikativ-demo.core/server-store
replikativ-demo.core=> (def server (<?? (server-peer server-store uri)))
#'replikativ-demo.core/server
replikativ-demo.core=> (start server)
starting #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
true
replikativ-demo.core=> 16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:extend? false, :type :sub/identities, :id #uuid \"7ed3719d-f6c4-4a26-a7b2-04078e44f9d2\", :sender #u"
16-08-24 13:26:10 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: starting subscription " #uuid "7ed3719d-f6c4-4a26-a7b2-04078e44f9d2" " from " #uuid "e12debcc-1755-4501-9576-4f10da56ba38"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: subscriptions " {}
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [replikativ.core:80] - "ensure back-subscription"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [replikativ.core:46] - "pub-out handshake:" {}
16-08-24 13:26:10 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: finishing " #uuid "7ed3719d-f6c4-4a26-a7b2-04078e44f9d2"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [replikativ.core:61] - #uuid "e12debcc-1755-4501-9576-4f10da56ba38" "subscribing to " {}
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [replikativ.core:49] - "starting to publish ops"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities-ack
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:extend? false, :type :sub/identities, :id #uuid \"7ed3719d-f6c4-4a26-a7b2-04078e44f9d2\", :sender #u"
16-08-24 13:26:10 mac-XPS-15-9550 WARN [replikativ.core:80] - "redundant subscription: " {}
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities-ack
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :sub/identities-ack, :id #uuid \"7ed3719d-f6c4-4a26-a7b2-04078e44f9d2\", :sender #uuid \"e12debc"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:extend? false, :type :sub/identities, :id #uuid \"33b10323-a6b6-4830-a051-389412001ff7\", :sender #u"
16-08-24 13:26:10 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: starting subscription " #uuid "33b10323-a6b6-4830-a051-389412001ff7" " from " #uuid "e12debcc-1755-4501-9576-4f10da56ba38"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: subscriptions " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [replikativ.core:80] - "notify all peers of changed subscription"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [replikativ.core:46] - "pub-out handshake:" {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}16-08-24 13:26:10 mac-XPS-15-9550 INFO [replikativ.core:52] - "publication-out ended for " {}
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities-ack
16-08-24 13:26:10 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: finishing " #uuid "33b10323-a6b6-4830-a051-389412001ff7"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [replikativ.core:61] - #uuid "e12debcc-1755-4501-9576-4f10da56ba38" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [replikativ.core:49] - "starting to publish ops"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:extend? false, :type :sub/identities, :id #uuid \"33b10323-a6b6-4830-a051-389412001ff7\", :sender #u"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :sub/identities-ack, :id #uuid \"33b10323-a6b6-4830-a051-389412001ff7\", :sender #uuid \"e12debc"
16-08-24 13:26:10 mac-XPS-15-9550 WARN [replikativ.core:80] - "redundant subscription: " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities-ack
16-08-24 13:26:10 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
replikativ-demo.core=>
replikativ-demo.core=>
replikativ-demo.core=> (def client-store (<?? (new-mem-store)))
#'replikativ-demo.core/client-store
replikativ-demo.core=> (def client (<?? (client-peer client-store)))
#'replikativ-demo.core/client
replikativ-demo.core=> (def stage (<?? (create-stage! "mail:[email protected]" client)))
#'replikativ-demo.core/stage
replikativ-demo.core=>
replikativ-demo.core=> (<?? (connect! stage uri))
16-08-24 13:27:59 mac-XPS-15-9550 INFO [replikativ.connect:35] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "connecting to:" "ws://127.0.0.1:31744"
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [http.async.client:288] - Created client: #object[com.ning.http.client.AsyncHttpClient 0x635f7e0b com.ning.http.client.AsyncHttpClient@635f7e0b]
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [com.ning.http.client.providers.netty.NettyAsyncHttpProvider:1142] -
Non cached request
DefaultHttpRequest(chunked: false)
GET / HTTP/1.1
Upgrade: WebSocket
Connection: Upgrade
Origin: http://127.0.0.1:31744
Sec-WebSocket-Key: 0xJZLopdBQ0JZcf6gKovgQ==
Sec-WebSocket-Version: 13
Host: 127.0.0.1:31744
Accept: */*
User-Agent: http.async.client
using Channel
[id: 0xae6495f4, /127.0.0.1:57342 => /127.0.0.1:31744]
16-08-24 13:27:59 mac-XPS-15-9550 INFO [kabel.platform:38] - "ws-opened" #object[com.ning.http.client.providers.netty.NettyWebSocket 0x4ff89b07 "NettyWebSocket{channel=[id: 0xae6495f4, /127.0.0.1:57342 => /127.0.0.1:31744]}"]
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :sub/identities
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:extend? false, :type :sub/identities, :id #uuid \"c420972f-bc74-4ff1-b2f2-7c0c613e2941\", :sender #u"
16-08-24 13:27:59 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: starting subscription " #uuid "c420972f-bc74-4ff1-b2f2-7c0c613e2941" " from " #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9"
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: subscriptions " {}
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [replikativ.core:80] - "ensure back-subscription"
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [replikativ.core:46] - "pub-out handshake:" {}
16-08-24 13:27:59 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: finishing " #uuid "c420972f-bc74-4ff1-b2f2-7c0c613e2941"
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities-ack
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [replikativ.core:49] - "starting to publish ops"
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [replikativ.core:61] - #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9" "subscribing to " {}
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :sub/identities-ack
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :sub/identities
16-08-24 13:27:59 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "subscribe: starting subscription " #uuid "c420972f-bc74-4ff1-b2f2-7c0c613e2941" " from " #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [replikativ.core:80] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "subscribe: subscriptions " {}
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [replikativ.core:80] - "ensure back-subscription"
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [replikativ.core:46] - "pub-out handshake:" {}
16-08-24 13:27:59 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "subscribe: finishing " #uuid "c420972f-bc74-4ff1-b2f2-7c0c613e2941"
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :sub/identities-ack
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [replikativ.core:61] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribing to " {}
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [replikativ.core:49] - "starting to publish ops"
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :sub/identities
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :sub/identities-ack, :id #uuid \"c420972f-bc74-4ff1-b2f2-7c0c613e2941\", :sender #uuid \"bfe35ef"
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [replikativ.connect:60] - "connect: backsubscription?" #uuid "c420972f-bc74-4ff1-b2f2-7c0c613e2941" {:type :sub/identities-ack, :id #uuid "c420972f-bc74-4ff1-b2f2-7c0c613e2941"}
16-08-24 13:27:59 mac-XPS-15-9550 INFO [replikativ.stage:137] - "connect!: connected " "ws://127.0.0.1:31744"
nil
replikativ-demo.core=> 16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:extend? false, :type :sub/identities, :id #uuid \"c420972f-bc74-4ff1-b2f2-7c0c613e2941\", :sender #u"
16-08-24 13:27:59 mac-XPS-15-9550 WARN [replikativ.core:80] - "redundant subscription: " {}
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities-ack
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:27:59 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :sub/identities-ack
replikativ-demo.core=> (<?? (s/create-cdvcs! stage :description "testing" :id cdvcs-id))
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.crdt.cdvcs.stage:44] - "creating new CDVCS for " "mail:[email protected]" "with id" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "subscribe: starting subscription " #uuid "e5742b15-2c43-435a-a596-73f50f478019" " from " "STAGE-1bcf"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:80] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "subscribe: subscriptions " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:80] - "notify all peers of changed subscription"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:46] - "pub-out handshake:" {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "subscribe: finishing " #uuid "e5742b15-2c43-435a-a596-73f50f478019"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:61] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:49] - "starting to publish ops"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:61] - "STAGE-1bcf" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :sub/identities
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:extend? false, :type :sub/identities, :id #uuid \"e5742b15-2c43-435a-a596-73f50f478019\", :sender #u"
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: starting subscription " #uuid "e5742b15-2c43-435a-a596-73f50f478019" " from " #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: subscriptions " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:80] - "ensure back-subscription"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:46] - "pub-out handshake:" {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.core:52] - "publication-out ended for " {}
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:61] - #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: finishing " #uuid "e5742b15-2c43-435a-a596-73f50f478019"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities-ack
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:49] - "starting to publish ops"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :sub/identities-ack
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :sub/identities
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "subscribe: starting subscription " #uuid "e5742b15-2c43-435a-a596-73f50f478019" " from " #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:80] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "subscribe: subscriptions " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.core:52] - "publication-out ended for " {}
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:80] - "ensure back-subscription"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:46] - "pub-out handshake:" {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:61] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :sub/identities-ack
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:49] - "starting to publish ops"
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "subscribe: finishing " #uuid "e5742b15-2c43-435a-a596-73f50f478019"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :sub/identities
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :sub/identities-ack, :id #uuid \"e5742b15-2c43-435a-a596-73f50f478019\", :sender #uuid \"bfe35ef"
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"} "for" #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.stage:63] - "trying to fetching edn from stage" #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:extend? false, :type :sub/identities, :id #uuid \"e5742b15-2c43-435a-a596-73f50f478019\", :sender #u"
16-08-24 13:28:38 mac-XPS-15-9550 WARN [replikativ.core:80] - "redundant subscription: " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities-ack
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :sub/identities-ack
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender "STAGE-1bcf", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}}
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender "STAGE-1bcf", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}}
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender "STAGE-1bcf", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}} "to" "STAGE-1bcf"
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender "STAGE-1bcf", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: sent new downstream ops"
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.stage:163] - "stage: pubing " #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender "STAGE-1bcf", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}}
replikativ-demo.core=> 16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"} "for" #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" {:transactions [], :parents [], :crdt :cdvcs, :version 1, :ts #inst "2016-08-24T13:28:38.367-00:00", :author "mail:[email protected]", :crdt-refs #{}}}
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"586a3a19-e148-4dc8-994c-c68e56a6039c\", :values {#uuid \"3004b2bd-3d"
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}}
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}}
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: sent new downstream ops"
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}} "to" #uuid "e12debcc-1755-4501-9576-4f10da56ba38"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}} "to" #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:38 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}}
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"586a3a19-e148-4dc8-994c-c68e56a6039c\", :sender #uuid \"bfe35ef"
16-08-24 13:28:39 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:39 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"3004b2bd-3dd9-5524-a09c-2da166ffad6a\"}, :type :fetch/edn, :id #uuid \"586a3a19-e148-4d"
16-08-24 13:28:39 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}
16-08-24 13:28:39 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:28:39 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" {:transactions [], :parents [], :crdt :cdvcs, :version 1, :ts #inst "2016-08-24T13:28:38.367-00:00", :author "mail:[email protected]", :crdt-refs #{}}}
16-08-24 13:28:39 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:40 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:40 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"586a3a19-e148-4dc8-994c-c68e56a6039c\", :sender #uuid \"e12debc"
16-08-24 13:28:41 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:41 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:28:41 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}}
16-08-24 13:28:41 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:41 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
replikativ-demo.core=> 16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:28:51 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"} "for" #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"7ab50f05-bc89-4270-a6c7-68d737a5d6a2\", :values {#uuid \"2b45d4a7-89"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:83] - "fetching new transactions" #{#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"} "for" #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"7ab50f05-bc89-4270-a6c7-68d737a5d6a2\", :values {#uuid \"048495d7-98"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:80] - "trans assoc-in" #uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" "+"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:80] - "trans assoc-in" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1" "1"
16-08-24 13:28:51 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}}
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:51 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}}
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: sent new downstream ops"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:51 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}} "to" #uuid "e12debcc-1755-4501-9576-4f10da56ba38"
16-08-24 13:28:51 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}} "to" #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:51 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"} "for" #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"2b45d4a7-894a-5215-a997-e8e1f310f637\"}, :type :fetch/edn, :id #uuid \"7ab50f05-bc89-42"
16-08-24 13:28:51 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:51.363-00:00", :parents [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:83] - "fetching new transactions" #{#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"} "for" #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn, :id #uuid \"7ab50f05-bc89-4270-a6c7-68d737a5d6a2\", :ids #{#uuid \"048495d7-98e8-58f"
16-08-24 13:28:51 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"}
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" +, #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1" 1}
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:80] - "trans assoc-in" #uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" "+"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:80] - "trans assoc-in" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1" "1"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"7ab50f05-bc89-4270-a6c7-68d737a5d6a2\", :sender #uuid \"e12debc"
16-08-24 13:28:51 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}}
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:51 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}}
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: sent new downstream ops"
16-08-24 13:28:51 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}} "to" "STAGE-1bcf"
16-08-24 13:28:51 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"7ab50f05-bc89-4270-a6c7-68d737a5d6a2\", :sender #uuid \"bfe35ef"
16-08-24 13:28:51 mac-XPS-15-9550 INFO [replikativ.stage:163] - "stage: pubing " #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}}
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:28:51 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}}
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:51 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:28:54 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"} "for" #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"450109ea-cfc1-4a5e-8e18-4c6d748ae26f\", :values {#uuid \"39b19291-4a"
16-08-24 13:28:54 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}}
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:54 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}}
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: sent new downstream ops"
16-08-24 13:28:54 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}} "to" #uuid "e12debcc-1755-4501-9576-4f10da56ba38"
16-08-24 13:28:54 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}} "to" #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:54 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"} "for" #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"39b19291-4af7-5aa4-a757-a053d6280fd2\"}, :type :fetch/edn, :id #uuid \"450109ea-cfc1-4a"
16-08-24 13:28:54 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:53.914-00:00", :parents [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:28:54 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}}
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:54 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}}
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: sent new downstream ops"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"450109ea-cfc1-4a5e-8e18-4c6d748ae26f\", :sender #uuid \"bfe35ef"
16-08-24 13:28:54 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}} "to" "STAGE-1bcf"
16-08-24 13:28:54 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
16-08-24 13:28:54 mac-XPS-15-9550 INFO [replikativ.stage:163] - "stage: pubing " #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}}
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"450109ea-cfc1-4a5e-8e18-4c6d748ae26f\", :sender #uuid \"e12debc"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:28:54 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}}
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:54 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"} "for" #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"d02568a7-5e1c-4665-ba60-f9b219a19e9d\", :values {#uuid \"15549bd5-68"
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}}
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}}
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: sent new downstream ops"
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}} "to" #uuid "e12debcc-1755-4501-9576-4f10da56ba38"
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}} "to" #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"} "for" #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"15549bd5-68d7-5ca0-93a6-596e2a9b4111\"}, :type :fetch/edn, :id #uuid \"d02568a7-5e1c-46"
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:55.026-00:00", :parents [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}}
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}}
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: sent new downstream ops"
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}} "to" "STAGE-1bcf"16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.stage:163] - "stage: pubing " #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}}
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"d02568a7-5e1c-4665-ba60-f9b219a19e9d\", :sender #uuid \"bfe35ef"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"d02568a7-5e1c-4665-ba60-f9b219a19e9d\", :sender #uuid \"e12debc"
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}}
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"} "for" #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd\", :values {#uuid \"0c53dca2-6c"
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}}
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}}
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: sent new downstream ops"
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}} "to" #uuid "e12debcc-1755-4501-9576-4f10da56ba38"
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}} "to" #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"} "for" #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"0c53dca2-6ccd-501c-a5f3-555b1ac14315\"}, :type :fetch/edn, :id #uuid \"4ff2fc2d-e09b-4c"
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:55.730-00:00", :parents [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}}
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}}
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: sent new downstream ops"
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}} "to" "STAGE-1bcf"16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.stage:163] - "stage: pubing " #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}}
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd\", :sender #uuid \"bfe35ef"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd\", :sender #uuid \"e12debc"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:28:55 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}}
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:55 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:28:56 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"} "for" #uuid "9358b08d-1c52-4b96-a096-3155c633dae2"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"9358b08d-1c52-4b96-a096-3155c633dae2\", :values {#uuid \"11d5b4dc-85"
16-08-24 13:28:56 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}}
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:56 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}}
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: sent new downstream ops"
16-08-24 13:28:56 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}} "to" #uuid "e12debcc-1755-4501-9576-4f10da56ba38"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:56 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}} "to" #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:56 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"} "for" #uuid "9358b08d-1c52-4b96-a096-3155c633dae2"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"11d5b4dc-85e7-5fe5-865a-d256eeaf1b16\"}, :type :fetch/edn, :id #uuid \"9358b08d-1c52-4b"
16-08-24 13:28:56 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:56.477-00:00", :parents [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:28:56 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}}
16-08-24 13:28:56 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}}
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: sent new downstream ops"
16-08-24 13:28:56 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}} "to" "STAGE-1bcf"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"9358b08d-1c52-4b96-a096-3155c633dae2\", :sender #uuid \"bfe35ef"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"9358b08d-1c52-4b96-a096-3155c633dae2\", :sender #uuid \"e12debc"
16-08-24 13:28:56 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
16-08-24 13:28:56 mac-XPS-15-9550 INFO [replikativ.stage:163] - "stage: pubing " #uuid "9358b08d-1c52-4b96-a096-3155c633dae2" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}}
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:28:56 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}}
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:28:56 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream-ack
replikativ-demo.core=>
replikativ-demo.core=> (def val-atom (atom -1))
#'replikativ-demo.core/val-atom
replikativ-demo.core=> (stream-into-atom! stage ["mail:[email protected]" cdvcs-id] eval-fns val-atom)
#object[clojure.core.async.impl.channels.ManyToManyChannel 0xa31c3f2 "clojure.core.async.impl.channels.ManyToManyChannel@a31c3f2"]
replikativ-demo.core=> (<?? (s/transact! stage ["mail:[email protected]" cdvcs-id]
#_=> ;; set a new value for this CDVCS
#_=> [['(fn [_ new] new) 0]]))
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [replikativ.crdt.cdvcs.core:88] - "committing to: " #uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" {:transactions [[#uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051" #uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758"]], :ts #inst "2016-08-24T13:30:08.061-00:00", :parents [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}
16-08-24 13:30:08 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"} "for" #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [replikativ.stage:63] - "trying to fetching edn from stage" #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:83] - "fetching new transactions" #{#uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758" #uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051"} "for" #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [replikativ.stage:63] - "trying to fetching edn from stage" #{#uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758" #uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051"}
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:80] - "trans assoc-in" #uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758" "0"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:80] - "trans assoc-in" #uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051" "(fn [_ new] new)"
16-08-24 13:30:08 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender "STAGE-1bcf", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}}
16-08-24 13:30:08 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender "STAGE-1bcf", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}}
nil
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: sent new downstream ops"
16-08-24 13:30:08 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender "STAGE-1bcf", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}} "to" "STAGE-1bcf"
16-08-24 13:30:08 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender "STAGE-1bcf", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
16-08-24 13:30:08 mac-XPS-15-9550 INFO [replikativ.stage:163] - "stage: pubing " #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender "STAGE-1bcf", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}}
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [replikativ.crdt.cdvcs.realize:154] - "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender "STAGE-1bcf", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}}
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:30:08 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"} "for" #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:30:08 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" {:transactions [[#uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051" #uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758"]], :ts #inst "2016-08-24T13:30:08.061-00:00", :parents [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"e623d0a2-80f4-4d9b-af4d-d41785342cd8\", :values {#uuid \"3c764f5e-f1"
replikativ-demo.core=> 16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:83] - "fetching new transactions" #{#uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758" #uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051"} "for" #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:30:08 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758" #uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051"}
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758" 0, #uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051" (fn [_ new] new)}
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"e623d0a2-80f4-4d9b-af4d-d41785342cd8\", :values {#uuid \"0b0e9316-7a"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:80] - "trans assoc-in" #uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758" "0"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:80] - "trans assoc-in" #uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051" "(fn [_ new] new)"
16-08-24 13:30:08 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}}
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:30:08 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}}
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: sent new downstream ops"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:30:08 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}} "to" #uuid "e12debcc-1755-4501-9576-4f10da56ba38"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:08 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}} "to" #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"e623d0a2-80f4-4d9b-af4d-d41785342cd8\", :sender #uuid \"bfe35ef"
16-08-24 13:30:08 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}}
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"3c764f5e-f1b5-57ed-b4ee-9a24c597389f\"}, :type :fetch/edn, :id #uuid \"e623d0a2-80f4-4d"
16-08-24 13:30:08 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" {:transactions [[#uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051" #uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758"]], :ts #inst "2016-08-24T13:30:08.061-00:00", :parents [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-24 13:30:08 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:10 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:10 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"0b0e9316-7a2b-5336-9cdb-7b1bf5f46758\" #uuid \"0a560c8a-a1b6-5823-9955-8a6f111e4051\"}, "
16-08-24 13:30:10 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758" #uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051"}
16-08-24 13:30:10 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758" 0, #uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051" (fn [_ new] new)}
16-08-24 13:30:10 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:30:10 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:10 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:10 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"e623d0a2-80f4-4d9b-af4d-d41785342cd8\", :sender #uuid \"e12debc"
16-08-24 13:30:10 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:10 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:30:10 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}}
16-08-24 13:30:10 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:30:10 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
replikativ-demo.core=>
replikativ-demo.core=> @val-atom
0
replikativ-demo.core=> 16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:extend? false, :type :sub/identities, :id #uuid \"fe1cbd6d-29f5-4ebf-ae5c-2647d5b91bbf\", :sender #u"
16-08-24 13:30:44 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: starting subscription " #uuid "fe1cbd6d-29f5-4ebf-ae5c-2647d5b91bbf" " from " #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: subscriptions " {}
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [replikativ.core:80] - "ensure back-subscription"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities-ack
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [replikativ.core:46] - "pub-out handshake:" {}
16-08-24 13:30:44 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: finishing " #uuid "fe1cbd6d-29f5-4ebf-ae5c-2647d5b91bbf"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [replikativ.core:61] - #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6" "subscribing to " {}
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [replikativ.core:49] - "starting to publish ops"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:extend? false, :type :sub/identities, :id #uuid \"fe1cbd6d-29f5-4ebf-ae5c-2647d5b91bbf\", :sender #u"
16-08-24 13:30:44 mac-XPS-15-9550 WARN [replikativ.core:80] - "redundant subscription: " {}
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities-ack
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :sub/identities-ack, :id #uuid \"fe1cbd6d-29f5-4ebf-ae5c-2647d5b91bbf\", :sender #uuid \"b4a60ac"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:extend? false, :type :sub/identities, :id #uuid \"7918e9f4-13e1-49b5-876c-0cdf46ff4098\", :sender #u"
16-08-24 13:30:44 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: starting subscription " #uuid "7918e9f4-13e1-49b5-876c-0cdf46ff4098" " from " #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: subscriptions " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:30:44 mac-XPS-15-9550 INFO [replikativ.core:52] - "publication-out ended for " {}
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [replikativ.core:46] - "pub-out handshake:" {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [replikativ.core:80] - "ensure back-subscription"
16-08-24 13:30:44 mac-XPS-15-9550 INFO [replikativ.core:80] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribe: finishing " #uuid "7918e9f4-13e1-49b5-876c-0cdf46ff4098"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [replikativ.core:61] - #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities-ack
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [replikativ.core:32] - "sending handshake" ["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"]
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [replikativ.core:49] - "starting to publish ops"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:extend? false, :type :sub/identities, :id #uuid \"7918e9f4-13e1-49b5-876c-0cdf46ff4098\", :sender #u"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:44 mac-XPS-15-9550 WARN [replikativ.core:80] - "redundant subscription: " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :sub/identities-ack
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :sub/identities-ack, :id #uuid \"7918e9f4-13e1-49b5-876c-0cdf46ff4098\", :sender #uuid \"b4a60ac"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"2b45d4a7-894a-5215-a997-e8e1f310f637\" #uuid \"3c764f5e-f1b5-57ed-b4ee-9a24c597389f\" #u"
16-08-24 13:30:44 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" #uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" #uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" #uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" #uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" #uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" #uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:51.363-00:00", :parents [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}, #uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" {:transactions [[#uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051" #uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758"]], :ts #inst "2016-08-24T13:30:08.061-00:00", :parents [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}, #uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:55.026-00:00", :parents [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}, #uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:55.730-00:00", :parents [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}, #uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" {:transactions [], :parents [], :crdt :cdvcs, :version 1, :ts #inst "2016-08-24T13:28:38.367-00:00", :author "mail:[email protected]", :crdt-refs #{}}, #uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:53.914-00:00", :parents [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}, #uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:56.477-00:00", :parents [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}16-08-24 13:30:44 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:45 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:45 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"048495d7-98e8-58f0-82f2-c02c750f4de9\" #uuid \"0b0e9316-7a2b-5336-9cdb-7b1bf5f46758\" #u"
16-08-24 13:30:45 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1" #uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051"}
16-08-24 13:30:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:30:45 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" +, #uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758" 0, #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1" 1, #uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051" (fn [_ new] new)}
16-08-24 13:30:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:45 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:45 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"f5aaeda2-3e28-42cf-8fe3-f0fdd91d44c0\", :sender #uuid \"b4a60ac"
16-08-24 13:30:45 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:45 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b6537c7d0c44\", :type :pub/d"
16-08-24 13:30:45 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :type :pub/downstream, :id #uuid "f5aaeda2-3e28-42cf-8fe3-f0fdd91d44c0", :downstream {:crdt :cdvcs, :method :handshake, :op {:commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"], #uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"], #uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"], #uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"], #uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"], #uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"], #uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}, :version 1}}, :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1"}
16-08-24 13:30:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:30:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:30:48 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"} "for" #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23\", :values {#uuid \"287d576c-47"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:83] - "fetching new transactions" #{#uuid "340c9ad3-3355-58f1-a504-6584168a3955"} "for" #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23\", :values {#uuid \"340c9ad3-33"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:80] - "trans assoc-in" #uuid "340c9ad3-3355-58f1-a504-6584168a3955" "2"
16-08-24 13:30:48 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}}
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:30:48 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}}
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: sent new downstream ops"
16-08-24 13:30:48 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}} "to" #uuid "e12debcc-1755-4501-9576-4f10da56ba38"
16-08-24 13:30:48 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}} "to" #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6"
16-08-24 13:30:48 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}} "to" #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:30:48 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"} "for" #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"287d576c-47ee-5799-91b0-48a6274aad9c\"}, :type :fetch/edn, :id #uuid \"dbc79e19-d4b1-4f"
16-08-24 13:30:48 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "340c9ad3-3355-58f1-a504-6584168a3955"]], :ts #inst "2016-08-24T13:30:48.038-00:00", :parents [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:83] - "fetching new transactions" #{#uuid "340c9ad3-3355-58f1-a504-6584168a3955"} "for" #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn, :id #uuid \"dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23\", :ids #{#uuid \"340c9ad3-3355-58f"
16-08-24 13:30:48 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "340c9ad3-3355-58f1-a504-6584168a3955"}
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "340c9ad3-3355-58f1-a504-6584168a3955" 2}
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:80] - "trans assoc-in" #uuid "340c9ad3-3355-58f1-a504-6584168a3955" "2"
16-08-24 13:30:48 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}}
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:30:48 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}}
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: sent new downstream ops"
16-08-24 13:30:48 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}} "to" "STAGE-1bcf"
16-08-24 13:30:48 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23\", :sender #uuid \"bfe35ef"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23\", :sender #uuid \"b4a60ac"
16-08-24 13:30:48 mac-XPS-15-9550 INFO [replikativ.stage:163] - "stage: pubing " #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}}
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [replikativ.crdt.cdvcs.realize:154] - "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}}
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:30:48 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}}
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"287d576c-47ee-5799-91b0-48a6274aad9c\"}, :type :fetch/edn, :id #uuid \"dbc79e19-d4b1-4f"
16-08-24 13:30:48 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "340c9ad3-3355-58f1-a504-6584168a3955"]], :ts #inst "2016-08-24T13:30:48.038-00:00", :parents [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-24 13:30:48 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:49 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:49 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"340c9ad3-3355-58f1-a504-6584168a3955\"}, :type :fetch/edn, :id #uuid \"dbc79e19-d4b1-4f"
16-08-24 13:30:49 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "340c9ad3-3355-58f1-a504-6584168a3955"}
16-08-24 13:30:49 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:30:49 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "340c9ad3-3355-58f1-a504-6584168a3955" 2}
16-08-24 13:30:49 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:30:50 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:50 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23\", :sender #uuid \"e12debc"
replikativ-demo.core=> @val-atom 16-08-24 13:30:51 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:30:51 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:30:51 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}}
16-08-24 13:30:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:30:51 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
@val-atom
2
replikativ-demo.core=> 16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:31:45 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"} "for" #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"7fdce4fa-8def-4137-9332-bbe77e91b3c2\", :values {#uuid \"1ad4c692-02"
16-08-24 13:31:45 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}}
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:31:45 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}}
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: sent new downstream ops"
16-08-24 13:31:45 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}} "to" #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6"
16-08-24 13:31:45 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}} "to" #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9"
16-08-24 13:31:45 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}} "to" #uuid "e12debcc-1755-4501-9576-4f10da56ba38"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:31:45 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"} "for" #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"1ad4c692-0212-5f98-b380-731ecdcd6d69\"}, :type :fetch/edn, :id #uuid \"7fdce4fa-8def-41"
16-08-24 13:31:45 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:31:44.932-00:00", :parents [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:31:45 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}}
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:31:45 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}}
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: sent new downstream ops"
16-08-24 13:31:45 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}} "to" "STAGE-1bcf"
16-08-24 13:31:45 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
16-08-24 13:31:45 mac-XPS-15-9550 INFO [replikativ.stage:163] - "stage: pubing " #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}}
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [replikativ.crdt.cdvcs.realize:154] - "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}}
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"7fdce4fa-8def-4137-9332-bbe77e91b3c2\", :sender #uuid \"bfe35ef"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:31:45 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}}
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"7fdce4fa-8def-4137-9332-bbe77e91b3c2\", :sender #uuid \"e12debc"16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"1ad4c692-0212-5f98-b380-731ecdcd6d69\"}, :type :fetch/edn, :id #uuid \"7fdce4fa-8def-41"
16-08-24 13:31:45 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:31:44.932-00:00", :parents [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-24 13:31:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 13:31:46 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:31:46 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"7fdce4fa-8def-4137-9332-bbe77e91b3c2\", :sender #uuid \"b4a60ac"
16-08-24 13:31:46 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 13:31:46 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 13:31:46 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}}
16-08-24 13:31:46 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 13:31:46 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
replikativ-demo.core=> @val-atom
2
replikativ-demo.core=>
replikativ-demo.core=> 16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 19:06:34 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"} "for" #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"6d7529c2-ac54-43f6-93eb-8b15012145d9\", :values {#uuid \"1f397cdb-b9"
16-08-24 19:06:34 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}}
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 19:06:34 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}}
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: sent new downstream ops"
16-08-24 19:06:34 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}} "to" #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6"16-08-24 19:06:34 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}} "to" #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9"
16-08-24 19:06:34 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}} "to" #uuid "e12debcc-1755-4501-9576-4f10da56ba38"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 19:06:34 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"} "for" #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"1f397cdb-b92d-554d-bb60-58f5cd2ce2e2\"}, :type :fetch/edn, :id #uuid \"6d7529c2-ac54-43"
16-08-24 19:06:34 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "340c9ad3-3355-58f1-a504-6584168a3955"]], :ts #inst "2016-08-24T19:06:34.438-00:00", :parents [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 19:06:34 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}}
16-08-24 19:06:34 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}}
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: sent new downstream ops"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 19:06:34 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
16-08-24 19:06:34 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}} "to" "STAGE-1bcf"
16-08-24 19:06:34 mac-XPS-15-9550 INFO [replikativ.stage:163] - "stage: pubing " #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}}
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [replikativ.crdt.cdvcs.realize:154] - "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}}
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"6d7529c2-ac54-43f6-93eb-8b15012145d9\", :sender #uuid \"bfe35ef"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 19:06:34 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}}
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 19:06:34 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"6d7529c2-ac54-43f6-93eb-8b15012145d9\", :sender #uuid \"b4a60ac"
16-08-24 19:06:35 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 19:06:35 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"1f397cdb-b92d-554d-bb60-58f5cd2ce2e2\"}, :type :fetch/edn, :id #uuid \"6d7529c2-ac54-43"
16-08-24 19:06:35 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}
16-08-24 19:06:35 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-24 19:06:35 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "340c9ad3-3355-58f1-a504-6584168a3955"]], :ts #inst "2016-08-24T19:06:34.438-00:00", :parents [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-24 19:06:35 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-24 19:06:36 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 19:06:36 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"6d7529c2-ac54-43f6-93eb-8b15012145d9\", :sender #uuid \"e12debc"
16-08-24 19:06:36 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-24 19:06:36 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-24 19:06:36 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}}
16-08-24 19:06:36 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-24 19:06:36 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
replikativ-demo.core=>
replikativ-demo.core=> @val-atom
5
replikativ-demo.core=> 16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-25 05:25:36 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"} "for" #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c"
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"26fe396b-ac7e-48eb-8f53-f2a11b54684c\", :values {#uuid \"255b8c18-90"
16-08-25 05:25:36 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}}
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:36 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}}
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: sent new downstream ops"
16-08-25 05:25:36 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}} "to" #uuid "e12debcc-1755-4501-9576-4f10da56ba38"
16-08-25 05:25:36 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}} "to" #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9"16-08-25 05:25:36 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}} "to" #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6"
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:25:36 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"} "for" #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c"
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn
16-08-25 05:25:36 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"255b8c18-9098-5297-921e-ffefaeec1a32\"}, :type :fetch/edn, :id #uuid \"26fe396b-ac7e-48"
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "340c9ad3-3355-58f1-a504-6584168a3955"]], :ts #inst "2016-08-25T05:25:36.764-00:00", :parents [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: sent new downstream ops"
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}} "to" "STAGE-1bcf"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"26fe396b-ac7e-48eb-8f53-f2a11b54684c\", :sender #uuid \"bfe35ef"
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.stage:163] - "stage: pubing " #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [replikativ.crdt.cdvcs.realize:154] - "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"26fe396b-ac7e-48eb-8f53-f2a11b54684c\", :sender #uuid \"b4a60ac"
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"255b8c18-9098-5297-921e-ffefaeec1a32\"}, :type :fetch/edn, :id #uuid \"26fe396b-ac7e-48"
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "340c9ad3-3355-58f1-a504-6584168a3955"]], :ts #inst "2016-08-25T05:25:36.764-00:00", :parents [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"} "for" #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"c5c19e36-8476-4cd0-94b7-9d072d2d1ff4\", :values {#uuid \"34c9cd83-0b"
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: sent new downstream ops"
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}} "to" #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9"
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}} "to" #uuid "e12debcc-1755-4501-9576-4f10da56ba38"
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}} "to" #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"} "for" #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"34c9cd83-0ba1-5b01-abf7-698d7aab1807\"}, :type :fetch/edn, :id #uuid \"c5c19e36-8476-4c"
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "340c9ad3-3355-58f1-a504-6584168a3955"]], :ts #inst "2016-08-25T05:25:37.660-00:00", :parents [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: sent new downstream ops"
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}} "to" "STAGE-1bcf"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.stage:163] - "stage: pubing " #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"c5c19e36-8476-4cd0-94b7-9d072d2d1ff4\", :sender #uuid \"bfe35ef"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [replikativ.crdt.cdvcs.realize:154] - "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-25 05:25:37 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}}
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:37 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"c5c19e36-8476-4cd0-94b7-9d072d2d1ff4\", :sender #uuid \"b4a60ac"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"} "for" #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"2d2b86eb-ab42-4717-b895-ae4db7e9dcb8\", :values {#uuid \"261e3bce-05"
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}}
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}}
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: sent new downstream ops"
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}} "to" #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6"
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}} "to" #uuid "e12debcc-1755-4501-9576-4f10da56ba38"
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}} "to" #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"} "for" #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"261e3bce-0505-58e0-a0d2-6d4dd542db07\"}, :type :fetch/edn, :id #uuid \"2d2b86eb-ab42-47"
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "340c9ad3-3355-58f1-a504-6584168a3955"]], :ts #inst "2016-08-25T05:25:37.894-00:00", :parents [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}}
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}}
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: sent new downstream ops"
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}} "to" "STAGE-1bcf"
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.stage:163] - "stage: pubing " #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}}
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"2d2b86eb-ab42-4717-b895-ae4db7e9dcb8\", :sender #uuid \"bfe35ef"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [replikativ.crdt.cdvcs.realize:154] - "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}}
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}}
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"2d2b86eb-ab42-4717-b895-ae4db7e9dcb8\", :sender #uuid \"b4a60ac"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"} "for" #uuid "0b5f1975-7014-47fa-83bb-592be9e77459"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"0b5f1975-7014-47fa-83bb-592be9e77459\", :values {#uuid \"0ee1265b-ea"
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}}
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}}
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: sent new downstream ops"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}} "to" #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9"16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}} "to" #uuid "e12debcc-1755-4501-9576-4f10da56ba38"
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}} "to" #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"} "for" #uuid "0b5f1975-7014-47fa-83bb-592be9e77459"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9\"}, :type :fetch/edn, :id #uuid \"0b5f1975-7014-47"
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "340c9ad3-3355-58f1-a504-6584168a3955"]], :ts #inst "2016-08-25T05:25:38.080-00:00", :parents [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}}
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}}
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: sent new downstream ops"
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}} "to" "STAGE-1bcf"16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"0b5f1975-7014-47fa-83bb-592be9e77459\", :sender #uuid \"bfe35ef"
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.stage:163] - "stage: pubing " #uuid "0b5f1975-7014-47fa-83bb-592be9e77459" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}}16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [replikativ.crdt.cdvcs.realize:154] - "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}}
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"26fe396b-ac7e-48eb-8f53-f2a11b54684c\", :sender #uuid \"e12debc"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-25 05:25:38 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}}
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:38 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"0b5f1975-7014-47fa-83bb-592be9e77459\", :sender #uuid \"b4a60ac"
16-08-25 05:25:39 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:39 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-25 05:25:39 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:39 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"34c9cd83-0ba1-5b01-abf7-698d7aab1807\"}, :type :fetch/edn, :id #uuid \"c5c19e36-8476-4c"
16-08-25 05:25:39 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}
16-08-25 05:25:39 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-25 05:25:39 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "340c9ad3-3355-58f1-a504-6584168a3955"]], :ts #inst "2016-08-25T05:25:37.660-00:00", :parents [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-25 05:25:39 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}}
16-08-25 05:25:39 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:39 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:39 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:40 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:40 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"c5c19e36-8476-4cd0-94b7-9d072d2d1ff4\", :sender #uuid \"e12debc"
16-08-25 05:25:41 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:41 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-25 05:25:41 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:41 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"261e3bce-0505-58e0-a0d2-6d4dd542db07\"}, :type :fetch/edn, :id #uuid \"2d2b86eb-ab42-47"
16-08-25 05:25:41 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}
16-08-25 05:25:41 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-25 05:25:41 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "340c9ad3-3355-58f1-a504-6584168a3955"]], :ts #inst "2016-08-25T05:25:37.894-00:00", :parents [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-25 05:25:41 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:41 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}}
16-08-25 05:25:41 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:41 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
@val-atom 16-08-25 05:25:42 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:42 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"2d2b86eb-ab42-4717-b895-ae4db7e9dcb8\", :sender #uuid \"e12debc"
11
replikativ-demo.core=> 16-08-25 05:25:43 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:43 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-25 05:25:43 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:43 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9\"}, :type :fetch/edn, :id #uuid \"0b5f1975-7014-47"
16-08-25 05:25:43 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}
16-08-25 05:25:43 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-25 05:25:43 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "340c9ad3-3355-58f1-a504-6584168a3955"]], :ts #inst "2016-08-25T05:25:38.080-00:00", :parents [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-25 05:25:43 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:43 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}}
16-08-25 05:25:43 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:43 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:25:44 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:44 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"0b5f1975-7014-47fa-83bb-592be9e77459\", :sender #uuid \"e12debc"
@val-atom 16-08-25 05:25:45 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:25:45 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-25 05:25:45 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}}
16-08-25 05:25:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:25:45 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
@val-atom
11
replikativ-demo.core=> @val-atom
11
replikativ-demo.core=> @val-atom
11
replikativ-demo.core=>
replikativ-demo.core=>
replikativ-demo.core=> @val-atom
11
replikativ-demo.core=> 16-08-25 05:27:04 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:27:04 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-25 05:27:04 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"} "for" #uuid "083c6174-939a-454a-b56e-2eda6054533a"
16-08-25 05:27:04 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn
16-08-25 05:27:04 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:27:04 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:27:04 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :fetch/edn-ack, :id #uuid \"083c6174-939a-454a-b56e-2eda6054533a\", :values {#uuid \"22d8ed89-22"
16-08-25 05:27:04 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}}
16-08-25 05:27:04 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:27:04 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}}
16-08-25 05:27:04 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish: sent new downstream ops"
16-08-25 05:27:04 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}} "to" #uuid "e12debcc-1755-4501-9576-4f10da56ba38"
16-08-25 05:27:04 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}} "to" #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9"
16-08-25 05:27:04 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:27:04 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}} "to" #uuid "b4a60ac6-57de-4d0e-a2b2-d084c83748c6"
16-08-25 05:27:04 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:27:04 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:27:04 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:27:04 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:27:04 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:27:04 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:27:04 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-25 05:27:04 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:27:05 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:56] - "starting to fetch " #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"} "for" #uuid "083c6174-939a-454a-b56e-2eda6054533a"
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :fetch/edn
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"22d8ed89-2296-54f3-a02c-9ae8d3d1da50\"}, :type :fetch/edn, :id #uuid \"083c6174-939a-45"
16-08-25 05:27:05 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "340c9ad3-3355-58f1-a504-6584168a3955"]], :ts #inst "2016-08-25T05:27:04.875-00:00", :parents [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-25 05:27:05 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}}
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:27:05 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}}
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [replikativ.core:157] - #uuid "ebd3f0dc-b732-42ce-94eb-be89dc987712" "publish: sent new downstream ops"
16-08-25 05:27:05 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}} "to" "STAGE-1bcf"
16-08-25 05:27:05 mac-XPS-15-9550 INFO [replikativ.core:50] - "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:39] - "client sending msg to:" "ws://127.0.0.1:31744" :pub/downstream
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [replikativ.crdt.cdvcs.realize:154] - "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}}
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"083c6174-939a-454a-b56e-2eda6054533a\", :sender #uuid \"bfe35ef"
16-08-25 05:27:05 mac-XPS-15-9550 INFO [replikativ.stage:163] - "stage: pubing " #uuid "083c6174-939a-454a-b56e-2eda6054533a" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}}
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"083c6174-939a-454a-b56e-2eda6054533a\", :sender #uuid \"b4a60ac"
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-25 05:27:05 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "bfe35ef5-9221-42ed-95af-38d569c39ed9", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}}
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:53] - "received byte message"
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:59] - "client received transit blob from:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:ids #{#uuid \"22d8ed89-2296-54f3-a02c-9ae8d3d1da50\"}, :type :fetch/edn, :id #uuid \"083c6174-939a-45"
16-08-25 05:27:05 mac-XPS-15-9550 INFO [replikativ.p2p.fetch:144] - "fetch:" #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :fetch/edn-ack
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [replikativ.p2p.fetch:144] - "sent fetched:" {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "340c9ad3-3355-58f1-a504-6584168a3955"]], :ts #inst "2016-08-25T05:27:04.875-00:00", :parents [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
16-08-25 05:27:05 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
16-08-25 05:27:06 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:27:06 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream-ack, :id #uuid \"083c6174-939a-454a-b56e-2eda6054533a\", :sender #uuid \"e12debc"
16-08-25 05:27:07 mac-XPS-15-9550 DEBUG [kabel.platform:140] - "received byte message"
16-08-25 05:27:07 mac-XPS-15-9550 DEBUG [kabel.platform:147] - "server received transit blob from:" "ws://127.0.0.1:31744" "{:type :pub/downstream, :user \"mail:[email protected]\", :crdt-id #uuid \"8e9074a1-e3b0-4c79-8765-b653"
16-08-25 05:27:07 mac-XPS-15-9550 INFO [replikativ.core:157] - #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "e12debcc-1755-4501-9576-4f10da56ba38", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}}
16-08-25 05:27:07 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sending msg:" "ws://127.0.0.1:31744" :pub/downstream-ack
16-08-25 05:27:07 mac-XPS-15-9550 DEBUG [kabel.platform:115] - "server sent transit msg"
replikativ-demo.core=> @val-atom
13
replikativ-demo.core=>
```
CLJS1
```
platform_log.cljs?rel=1471683965087:12 "ensure back-subscription"
platform_log.cljs?rel=1471683965087:11 "pub-out handshake:" {}
platform_log.cljs?rel=1471683965087:12 "pub-out handshake:" {}
platform_log.cljs?rel=1471683965087:11 #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribing to " {}
platform_log.cljs?rel=1471683965087:12 #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribing to " {}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "subscribe: finishing " #uuid "7ed3719d-f6c4-4a26-a7b2-04078e44f9d2"
platform_log.cljs?rel=1471683965087:11 "connect: backsubscription?" #uuid "7ed3719d-f6c4-4a26-a7b2-04078e44f9d2" {:type :sub/identities-ack, :id #uuid "7ed3719d-f6c4-4a26-a7b2-04078e44f9d2"}
platform_log.cljs?rel=1471683965087:12 "connect: backsubscription?" #uuid "7ed3719d-f6c4-4a26-a7b2-04078e44f9d2" {:type :sub/identities-ack, :id #uuid "7ed3719d-f6c4-4a26-a7b2-04078e44f9d2"}
platform_log.cljs?rel=1471683965087:11 "starting to publish ops"
platform_log.cljs?rel=1471683965087:12 "starting to publish ops"
platform_log.cljs?rel=1471683965087:15 "connect!: connected " "ws://127.0.0.1:31744"
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "subscribe: starting subscription " #uuid "33b10323-a6b6-4830-a051-389412001ff7" " from " "STAGE-6bf5"
platform_log.cljs?rel=1471683965087:11 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "subscribe: subscriptions " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:12 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "subscribe: subscriptions " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:11 "notify all peers of changed subscription"
platform_log.cljs?rel=1471683965087:12 "notify all peers of changed subscription"
platform_log.cljs?rel=1471683965087:11 "pub-out handshake:" {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:12 "pub-out handshake:" {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:11 "starting to publish ops"
platform_log.cljs?rel=1471683965087:12 "starting to publish ops"
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "subscribe: finishing " #uuid "33b10323-a6b6-4830-a051-389412001ff7"
platform_log.cljs?rel=1471683965087:11 #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:12 #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:11 "STAGE-6bf5" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:12 "STAGE-6bf5" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "subscribe: starting subscription " #uuid "33b10323-a6b6-4830-a051-389412001ff7" " from " #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:11 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "subscribe: subscriptions " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:12 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "subscribe: subscriptions " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:11 "ensure back-subscription"
platform_log.cljs?rel=1471683965087:12 "ensure back-subscription"
platform_log.cljs?rel=1471683965087:15 "publication-out ended for " {}
platform_log.cljs?rel=1471683965087:11 "pub-out handshake:" {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:12 "pub-out handshake:" {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:11 #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:12 #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "subscribe: finishing " #uuid "33b10323-a6b6-4830-a051-389412001ff7"
platform_log.cljs?rel=1471683965087:11 "starting to publish ops"
platform_log.cljs?rel=1471683965087:12 "starting to publish ops"
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
core.cljs:150 Global Supervisor detected stale error: #error {:message #error {:message "CDVCS does not exist.", :data {:type :cdvcs-does-not-exist, :user "mail:[email protected]", :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}, :data {:type :cdvcs-does-not-exist, :user mail:[email protected], :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}, :cause #error {:message CDVCS does not exist., :data {:type :cdvcs-does-not-exist, :user mail:[email protected], :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}} Error: #error {:message "CDVCS does not exist.", :data {:type :cdvcs-does-not-exist, :user "mail:[email protected]", :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
at new cljs$core$ExceptionInfo (http://localhost:3449/js/compiled/out/cljs/core.js:34262:10)
at Function.cljs.core.ex_info.cljs$core$IFn$_invoke$arity$3 (http://localhost:3449/js/compiled/out/cljs/core.js:34338:9)
at cljs$core$ex_info (http://localhost:3449/js/compiled/out/cljs/core.js:34324:26)
at full$async$throw_if_exception (http://localhost:3449/js/compiled/out/full/async.js:436:25)
at http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1193:48
at http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1394:51
at replikativ_cljs_demo$core$add_BANG__$_state_machine__13410__auto____1 (http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1415:4)
at replikativ_cljs_demo$core$add_BANG__$_state_machine__13410__auto__ (http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1431:78)
at cljs$core$async$impl$ioc_helpers$run_state_machine (http://localhost:3449/js/compiled/out/cljs/core/async/impl/ioc_helpers.js:94:110)
at cljs$core$async$impl$ioc_helpers$run_state_machine_wrapped (http://localhost:3449/js/compiled/out/cljs/core/async/impl/ioc_helpers.js:97:63)
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
core.cljs:150 Global Supervisor detected stale error: #error {:message #error {:message "CDVCS does not exist.", :data {:type :cdvcs-does-not-exist, :user "mail:[email protected]", :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}, :data {:type :cdvcs-does-not-exist, :user mail:[email protected], :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}, :cause #error {:message CDVCS does not exist., :data {:type :cdvcs-does-not-exist, :user mail:[email protected], :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}} Error: #error {:message "CDVCS does not exist.", :data {:type :cdvcs-does-not-exist, :user "mail:[email protected]", :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
at new cljs$core$ExceptionInfo (http://localhost:3449/js/compiled/out/cljs/core.js:34262:10)
at Function.cljs.core.ex_info.cljs$core$IFn$_invoke$arity$3 (http://localhost:3449/js/compiled/out/cljs/core.js:34338:9)
at cljs$core$ex_info (http://localhost:3449/js/compiled/out/cljs/core.js:34324:26)
at full$async$throw_if_exception (http://localhost:3449/js/compiled/out/full/async.js:436:25)
at http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1193:48
at http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1394:51
at replikativ_cljs_demo$core$add_BANG__$_state_machine__13410__auto____1 (http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1415:4)
at replikativ_cljs_demo$core$add_BANG__$_state_machine__13410__auto__ (http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1431:78)
at cljs$core$async$impl$ioc_helpers$run_state_machine (http://localhost:3449/js/compiled/out/cljs/core/async/impl/ioc_helpers.js:94:110)
at cljs$core$async$impl$ioc_helpers$run_state_machine_wrapped (http://localhost:3449/js/compiled/out/cljs/core/async/impl/ioc_helpers.js:97:63)
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
core.cljs:150 Global Supervisor detected stale error: #error {:message #error {:message "CDVCS does not exist.", :data {:type :cdvcs-does-not-exist, :user "mail:[email protected]", :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}, :data {:type :cdvcs-does-not-exist, :user mail:[email protected], :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}, :cause #error {:message CDVCS does not exist., :data {:type :cdvcs-does-not-exist, :user mail:[email protected], :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}} Error: #error {:message "CDVCS does not exist.", :data {:type :cdvcs-does-not-exist, :user "mail:[email protected]", :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
at new cljs$core$ExceptionInfo (http://localhost:3449/js/compiled/out/cljs/core.js:34262:10)
at Function.cljs.core.ex_info.cljs$core$IFn$_invoke$arity$3 (http://localhost:3449/js/compiled/out/cljs/core.js:34338:9)
at cljs$core$ex_info (http://localhost:3449/js/compiled/out/cljs/core.js:34324:26)
at full$async$throw_if_exception (http://localhost:3449/js/compiled/out/full/async.js:436:25)
at http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1193:48
at http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1394:51
at replikativ_cljs_demo$core$add_BANG__$_state_machine__13410__auto____1 (http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1415:4)
at replikativ_cljs_demo$core$add_BANG__$_state_machine__13410__auto__ (http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1431:78)
at cljs$core$async$impl$ioc_helpers$run_state_machine (http://localhost:3449/js/compiled/out/cljs/core/async/impl/ioc_helpers.js:94:110)
at cljs$core$async$impl$ioc_helpers$run_state_machine_wrapped (http://localhost:3449/js/compiled/out/cljs/core/async/impl/ioc_helpers.js:97:63)
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
core.cljs:150 Global Supervisor detected stale error: #error {:message #error {:message "CDVCS does not exist.", :data {:type :cdvcs-does-not-exist, :user "mail:[email protected]", :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}, :data {:type :cdvcs-does-not-exist, :user mail:[email protected], :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}, :cause #error {:message CDVCS does not exist., :data {:type :cdvcs-does-not-exist, :user mail:[email protected], :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}} Error: #error {:message "CDVCS does not exist.", :data {:type :cdvcs-does-not-exist, :user "mail:[email protected]", :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
at new cljs$core$ExceptionInfo (http://localhost:3449/js/compiled/out/cljs/core.js:34262:10)
at Function.cljs.core.ex_info.cljs$core$IFn$_invoke$arity$3 (http://localhost:3449/js/compiled/out/cljs/core.js:34338:9)
at cljs$core$ex_info (http://localhost:3449/js/compiled/out/cljs/core.js:34324:26)
at full$async$throw_if_exception (http://localhost:3449/js/compiled/out/full/async.js:436:25)
at http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1193:48
at http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1394:51
at replikativ_cljs_demo$core$add_BANG__$_state_machine__13410__auto____1 (http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1415:4)
at replikativ_cljs_demo$core$add_BANG__$_state_machine__13410__auto__ (http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1431:78)
at cljs$core$async$impl$ioc_helpers$run_state_machine (http://localhost:3449/js/compiled/out/cljs/core/async/impl/ioc_helpers.js:94:110)
at cljs$core$async$impl$ioc_helpers$run_state_machine_wrapped (http://localhost:3449/js/compiled/out/cljs/core/async/impl/ioc_helpers.js:97:63)
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
core.cljs:150 Global Supervisor detected stale error: #error {:message #error {:message "CDVCS does not exist.", :data {:type :cdvcs-does-not-exist, :user "mail:[email protected]", :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}, :data {:type :cdvcs-does-not-exist, :user mail:[email protected], :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}, :cause #error {:message CDVCS does not exist., :data {:type :cdvcs-does-not-exist, :user mail:[email protected], :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}} Error: #error {:message "CDVCS does not exist.", :data {:type :cdvcs-does-not-exist, :user "mail:[email protected]", :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
at new cljs$core$ExceptionInfo (http://localhost:3449/js/compiled/out/cljs/core.js:34262:10)
at Function.cljs.core.ex_info.cljs$core$IFn$_invoke$arity$3 (http://localhost:3449/js/compiled/out/cljs/core.js:34338:9)
at cljs$core$ex_info (http://localhost:3449/js/compiled/out/cljs/core.js:34324:26)
at full$async$throw_if_exception (http://localhost:3449/js/compiled/out/full/async.js:436:25)
at http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1193:48
at http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1394:51
at replikativ_cljs_demo$core$add_BANG__$_state_machine__13410__auto____1 (http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1415:4)
at replikativ_cljs_demo$core$add_BANG__$_state_machine__13410__auto__ (http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1431:78)
at cljs$core$async$impl$ioc_helpers$run_state_machine (http://localhost:3449/js/compiled/out/cljs/core/async/impl/ioc_helpers.js:94:110)
at cljs$core$async$impl$ioc_helpers$run_state_machine_wrapped (http://localhost:3449/js/compiled/out/cljs/core/async/impl/ioc_helpers.js:97:63)
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
core.cljs:150 Global Supervisor detected stale error: #error {:message #error {:message "CDVCS does not exist.", :data {:type :cdvcs-does-not-exist, :user "mail:[email protected]", :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}, :data {:type :cdvcs-does-not-exist, :user mail:[email protected], :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}, :cause #error {:message CDVCS does not exist., :data {:type :cdvcs-does-not-exist, :user mail:[email protected], :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}} Error: #error {:message "CDVCS does not exist.", :data {:type :cdvcs-does-not-exist, :user "mail:[email protected]", :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
at new cljs$core$ExceptionInfo (http://localhost:3449/js/compiled/out/cljs/core.js:34262:10)
at Function.cljs.core.ex_info.cljs$core$IFn$_invoke$arity$3 (http://localhost:3449/js/compiled/out/cljs/core.js:34338:9)
at cljs$core$ex_info (http://localhost:3449/js/compiled/out/cljs/core.js:34324:26)
at full$async$throw_if_exception (http://localhost:3449/js/compiled/out/full/async.js:436:25)
at http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1193:48
at http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1394:51
at replikativ_cljs_demo$core$add_BANG__$_state_machine__13410__auto____1 (http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1415:4)
at replikativ_cljs_demo$core$add_BANG__$_state_machine__13410__auto__ (http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1431:78)
at cljs$core$async$impl$ioc_helpers$run_state_machine (http://localhost:3449/js/compiled/out/cljs/core/async/impl/ioc_helpers.js:94:110)
at cljs$core$async$impl$ioc_helpers$run_state_machine_wrapped (http://localhost:3449/js/compiled/out/cljs/core/async/impl/ioc_helpers.js:97:63)
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
core.cljs:150 Global Supervisor detected stale error: #error {:message #error {:message "CDVCS does not exist.", :data {:type :cdvcs-does-not-exist, :user "mail:[email protected]", :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}, :data {:type :cdvcs-does-not-exist, :user mail:[email protected], :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}, :cause #error {:message CDVCS does not exist., :data {:type :cdvcs-does-not-exist, :user mail:[email protected], :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}} Error: #error {:message "CDVCS does not exist.", :data {:type :cdvcs-does-not-exist, :user "mail:[email protected]", :cdvcs #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
at new cljs$core$ExceptionInfo (http://localhost:3449/js/compiled/out/cljs/core.js:34262:10)
at Function.cljs.core.ex_info.cljs$core$IFn$_invoke$arity$3 (http://localhost:3449/js/compiled/out/cljs/core.js:34338:9)
at cljs$core$ex_info (http://localhost:3449/js/compiled/out/cljs/core.js:34324:26)
at full$async$throw_if_exception (http://localhost:3449/js/compiled/out/full/async.js:436:25)
at http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1193:48
at http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1394:51
at replikativ_cljs_demo$core$add_BANG__$_state_machine__13410__auto____1 (http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1415:4)
at replikativ_cljs_demo$core$add_BANG__$_state_machine__13410__auto__ (http://localhost:3449/js/compiled/out/replikativ_cljs_demo/core.js:1431:78)
at cljs$core$async$impl$ioc_helpers$run_state_machine (http://localhost:3449/js/compiled/out/cljs/core/async/impl/ioc_helpers.js:94:110)
at cljs$core$async$impl$ioc_helpers$run_state_machine_wrapped (http://localhost:3449/js/compiled/out/cljs/core/async/impl/ioc_helpers.js:97:63)
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:15 "starting to fetch " #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"} "for" #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c"
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}}
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:11 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:12 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}} "to" "STAGE-6bf5"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:15 "stage: pubing " #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}}
platform_log.cljs?rel=1471683965087:11 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}}
platform_log.cljs?rel=1471683965087:12 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "586a3a19-e148-4dc8-994c-c68e56a6039c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:commit-graph {#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :version 1, :heads #{#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"}, :method :handshake}}}
platform_log.cljs?rel=1471683965087:11 "committing to: " #uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:51.363-00:00", :parents [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}
platform_log.cljs?rel=1471683965087:12 "committing to: " #uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:51.363-00:00", :parents [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}
platform_log.cljs?rel=1471683965087:15 "starting to fetch " #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"} "for" #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2"
platform_log.cljs?rel=1471683965087:11 "trying to fetching edn from stage" #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}
platform_log.cljs?rel=1471683965087:12 "trying to fetching edn from stage" #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}
platform_log.cljs?rel=1471683965087:11 "fetching new transactions" #{#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"} "for" #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2"
platform_log.cljs?rel=1471683965087:12 "fetching new transactions" #{#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"} "for" #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2"
platform_log.cljs?rel=1471683965087:11 "trying to fetching edn from stage" #{#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"}
platform_log.cljs?rel=1471683965087:12 "trying to fetching edn from stage" #{#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"}
platform_log.cljs?rel=1471683965087:11 "trans assoc-in" #uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" "+"
platform_log.cljs?rel=1471683965087:12 "trans assoc-in" #uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" "+"
platform_log.cljs?rel=1471683965087:11 "trans assoc-in" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1" "1"
platform_log.cljs?rel=1471683965087:12 "trans assoc-in" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1" "1"
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}}
platform_log.cljs?rel=1471683965087:11 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:12 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}} "to" "STAGE-6bf5"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:15 "stage: pubing " #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}}
platform_log.cljs?rel=1471683965087:11 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}}
platform_log.cljs?rel=1471683965087:12 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}}
platform_log.cljs?rel=1471683965087:15 "fetch:" #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}
platform_log.cljs?rel=1471683965087:11 "sent fetched:" {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:51.363-00:00", :parents [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
platform_log.cljs?rel=1471683965087:12 "sent fetched:" {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:51.363-00:00", :parents [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
platform_log.cljs?rel=1471683965087:15 "fetch:" #{#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"}
platform_log.cljs?rel=1471683965087:11 "sent fetched:" {#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" +, #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1" 1}
platform_log.cljs?rel=1471683965087:12 "sent fetched:" {#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" +, #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1" 1}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7ab50f05-bc89-4270-a6c7-68d737a5d6a2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"]}, :heads #{#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"}}}}
platform_log.cljs?rel=1471683965087:11 "committing to: " #uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:53.914-00:00", :parents [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}
platform_log.cljs?rel=1471683965087:12 "committing to: " #uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:53.914-00:00", :parents [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}
platform_log.cljs?rel=1471683965087:15 "starting to fetch " #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"} "for" #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f"
platform_log.cljs?rel=1471683965087:11 "trying to fetching edn from stage" #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}
platform_log.cljs?rel=1471683965087:12 "trying to fetching edn from stage" #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}}
platform_log.cljs?rel=1471683965087:11 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:12 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}} "to" "STAGE-6bf5"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:15 "stage: pubing " #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}}
platform_log.cljs?rel=1471683965087:11 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}}
platform_log.cljs?rel=1471683965087:12 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}}
platform_log.cljs?rel=1471683965087:15 "fetch:" #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}
platform_log.cljs?rel=1471683965087:11 "sent fetched:" {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:53.914-00:00", :parents [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
platform_log.cljs?rel=1471683965087:12 "sent fetched:" {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:53.914-00:00", :parents [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "450109ea-cfc1-4a5e-8e18-4c6d748ae26f", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"]}, :heads #{#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"}}}}
platform_log.cljs?rel=1471683965087:11 "committing to: " #uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:55.026-00:00", :parents [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}
platform_log.cljs?rel=1471683965087:12 "committing to: " #uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:55.026-00:00", :parents [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}
platform_log.cljs?rel=1471683965087:15 "starting to fetch " #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"} "for" #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d"
platform_log.cljs?rel=1471683965087:11 "trying to fetching edn from stage" #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}
platform_log.cljs?rel=1471683965087:12 "trying to fetching edn from stage" #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}}
platform_log.cljs?rel=1471683965087:11 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:12 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}} "to" "STAGE-6bf5"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:15 "stage: pubing " #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}}
platform_log.cljs?rel=1471683965087:11 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}}
platform_log.cljs?rel=1471683965087:12 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}}
platform_log.cljs?rel=1471683965087:15 "fetch:" #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}
platform_log.cljs?rel=1471683965087:11 "sent fetched:" {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:55.026-00:00", :parents [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
platform_log.cljs?rel=1471683965087:12 "sent fetched:" {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:55.026-00:00", :parents [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "d02568a7-5e1c-4665-ba60-f9b219a19e9d", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"]}, :heads #{#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"}}}}
platform_log.cljs?rel=1471683965087:11 "committing to: " #uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:55.730-00:00", :parents [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}
platform_log.cljs?rel=1471683965087:12 "committing to: " #uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:55.730-00:00", :parents [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}
platform_log.cljs?rel=1471683965087:15 "starting to fetch " #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"} "for" #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd"
platform_log.cljs?rel=1471683965087:11 "trying to fetching edn from stage" #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}
platform_log.cljs?rel=1471683965087:12 "trying to fetching edn from stage" #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}}
platform_log.cljs?rel=1471683965087:11 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:12 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}} "to" "STAGE-6bf5"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:15 "stage: pubing " #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}}
platform_log.cljs?rel=1471683965087:11 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}}
platform_log.cljs?rel=1471683965087:12 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}}
platform_log.cljs?rel=1471683965087:15 "fetch:" #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}
platform_log.cljs?rel=1471683965087:11 "sent fetched:" {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:55.730-00:00", :parents [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
platform_log.cljs?rel=1471683965087:12 "sent fetched:" {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:55.730-00:00", :parents [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "4ff2fc2d-e09b-4cee-bdc8-dfdcc71b5bcd", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"]}, :heads #{#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"}}}}
platform_log.cljs?rel=1471683965087:11 "committing to: " #uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:56.477-00:00", :parents [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}
platform_log.cljs?rel=1471683965087:12 "committing to: " #uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:56.477-00:00", :parents [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}
platform_log.cljs?rel=1471683965087:15 "starting to fetch " #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"} "for" #uuid "9358b08d-1c52-4b96-a096-3155c633dae2"
platform_log.cljs?rel=1471683965087:11 "trying to fetching edn from stage" #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}
platform_log.cljs?rel=1471683965087:12 "trying to fetching edn from stage" #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}}
platform_log.cljs?rel=1471683965087:11 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:12 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}} "to" "STAGE-6bf5"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:15 "stage: pubing " #uuid "9358b08d-1c52-4b96-a096-3155c633dae2" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}}
platform_log.cljs?rel=1471683965087:11 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}}
platform_log.cljs?rel=1471683965087:12 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}}
platform_log.cljs?rel=1471683965087:15 "fetch:" #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}
platform_log.cljs?rel=1471683965087:11 "sent fetched:" {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:56.477-00:00", :parents [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
platform_log.cljs?rel=1471683965087:12 "sent fetched:" {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:28:56.477-00:00", :parents [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "9358b08d-1c52-4b96-a096-3155c633dae2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"]}, :heads #{#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"}}}}
platform_log.cljs?rel=1471683965087:15 "starting to fetch " #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"} "for" #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8"
platform_log.cljs?rel=1471683965087:11 "fetching new transactions" #{#uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051" #uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758"} "for" #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8"
platform_log.cljs?rel=1471683965087:12 "fetching new transactions" #{#uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051" #uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758"} "for" #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8"
platform_log.cljs?rel=1471683965087:11 "trans assoc-in" #uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051" "(fn [_ new] new)"
platform_log.cljs?rel=1471683965087:12 "trans assoc-in" #uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051" "(fn [_ new] new)"
platform_log.cljs?rel=1471683965087:11 "trans assoc-in" #uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758" "0"
platform_log.cljs?rel=1471683965087:12 "trans assoc-in" #uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758" "0"
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}}
platform_log.cljs?rel=1471683965087:11 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:12 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}} "to" "STAGE-6bf5"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:15 "stage: pubing " #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}}
platform_log.cljs?rel=1471683965087:11 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}}
platform_log.cljs?rel=1471683965087:12 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "e623d0a2-80f4-4d9b-af4d-d41785342cd8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"]}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}}}}
platform_log.cljs?rel=1471683965087:15 "starting to fetch " #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"} "for" #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23"
platform_log.cljs?rel=1471683965087:11 "fetching new transactions" #{#uuid "340c9ad3-3355-58f1-a504-6584168a3955"} "for" #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23"
platform_log.cljs?rel=1471683965087:12 "fetching new transactions" #{#uuid "340c9ad3-3355-58f1-a504-6584168a3955"} "for" #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23"
platform_log.cljs?rel=1471683965087:11 "trans assoc-in" #uuid "340c9ad3-3355-58f1-a504-6584168a3955" "2"
platform_log.cljs?rel=1471683965087:12 "trans assoc-in" #uuid "340c9ad3-3355-58f1-a504-6584168a3955" "2"
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}}
platform_log.cljs?rel=1471683965087:11 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:12 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}} "to" "STAGE-6bf5"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:15 "stage: pubing " #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}}
platform_log.cljs?rel=1471683965087:11 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}}
platform_log.cljs?rel=1471683965087:12 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "287d576c-47ee-5799-91b0-48a6274aad9c" [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"]}, :heads #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"}}}}
platform_log.cljs?rel=1471683965087:11 "committing to: " #uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:31:44.932-00:00", :parents [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}
platform_log.cljs?rel=1471683965087:12 "committing to: " #uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:31:44.932-00:00", :parents [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}
platform_log.cljs?rel=1471683965087:15 "starting to fetch " #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"} "for" #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2"
platform_log.cljs?rel=1471683965087:11 "trying to fetching edn from stage" #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}
platform_log.cljs?rel=1471683965087:12 "trying to fetching edn from stage" #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}}
platform_log.cljs?rel=1471683965087:11 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:12 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}} "to" "STAGE-6bf5"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:15 "stage: pubing " #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}}
platform_log.cljs?rel=1471683965087:11 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}}
platform_log.cljs?rel=1471683965087:12 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender "STAGE-6bf5", :host :replikativ.stage/stage, :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}}
platform_log.cljs?rel=1471683965087:15 "fetch:" #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}
platform_log.cljs?rel=1471683965087:11 "sent fetched:" {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:31:44.932-00:00", :parents [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
platform_log.cljs?rel=1471683965087:12 "sent fetched:" {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"]], :ts #inst "2016-08-24T13:31:44.932-00:00", :parents [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "7fdce4fa-8def-4137-9332-bbe77e91b3c2", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69" [#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"]}, :heads #{#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"}}}}
platform_log.cljs?rel=1471683965087:15 "starting to fetch " #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"} "for" #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9"
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}}
platform_log.cljs?rel=1471683965087:11 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:12 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}} "to" "STAGE-6bf5"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:15 "stage: pubing " #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}}
platform_log.cljs?rel=1471683965087:11 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}}
platform_log.cljs?rel=1471683965087:12 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "6d7529c2-ac54-43f6-93eb-8b15012145d9", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2" [#uuid "1ad4c692-0212-5f98-b380-731ecdcd6d69"]}, :heads #{#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"}}}}
platform_log.cljs?rel=1471683965087:15 "starting to fetch " #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"} "for" #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c"
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}}
platform_log.cljs?rel=1471683965087:11 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:12 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}} "to" "STAGE-6bf5"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:15 "stage: pubing " #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}}
platform_log.cljs?rel=1471683965087:11 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}}
platform_log.cljs?rel=1471683965087:12 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "26fe396b-ac7e-48eb-8f53-f2a11b54684c", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "255b8c18-9098-5297-921e-ffefaeec1a32" [#uuid "1f397cdb-b92d-554d-bb60-58f5cd2ce2e2"]}, :heads #{#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"}}}}
platform_log.cljs?rel=1471683965087:15 "starting to fetch " #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"} "for" #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4"
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}}
platform_log.cljs?rel=1471683965087:11 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:12 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}} "to" "STAGE-6bf5"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:15 "stage: pubing " #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}}
platform_log.cljs?rel=1471683965087:11 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}}
platform_log.cljs?rel=1471683965087:12 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "c5c19e36-8476-4cd0-94b7-9d072d2d1ff4", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807" [#uuid "255b8c18-9098-5297-921e-ffefaeec1a32"]}, :heads #{#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"}}}}
platform_log.cljs?rel=1471683965087:15 "starting to fetch " #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"} "for" #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8"
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}}
platform_log.cljs?rel=1471683965087:11 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:12 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}} "to" "STAGE-6bf5"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:15 "stage: pubing " #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}}
platform_log.cljs?rel=1471683965087:11 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}}
platform_log.cljs?rel=1471683965087:12 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "2d2b86eb-ab42-4717-b895-ae4db7e9dcb8", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07" [#uuid "34c9cd83-0ba1-5b01-abf7-698d7aab1807"]}, :heads #{#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"}}}}
platform_log.cljs?rel=1471683965087:15 "starting to fetch " #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"} "for" #uuid "0b5f1975-7014-47fa-83bb-592be9e77459"
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}}
platform_log.cljs?rel=1471683965087:11 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:12 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}} "to" "STAGE-6bf5"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:15 "stage: pubing " #uuid "0b5f1975-7014-47fa-83bb-592be9e77459" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}}
platform_log.cljs?rel=1471683965087:11 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}}
platform_log.cljs?rel=1471683965087:12 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "0b5f1975-7014-47fa-83bb-592be9e77459", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9" [#uuid "261e3bce-0505-58e0-a0d2-6d4dd542db07"]}, :heads #{#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"}}}}
platform_log.cljs?rel=1471683965087:15 "starting to fetch " #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"} "for" #uuid "083c6174-939a-454a-b56e-2eda6054533a"
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish-in: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}}
platform_log.cljs?rel=1471683965087:15 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: downstream ops" {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}}
platform_log.cljs?rel=1471683965087:11 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:12 #uuid "7954226c-f208-414d-8f0a-18a098bb7e3f" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}} "to" "STAGE-6bf5"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid
"083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:15 "stage: pubing " #uuid "083c6174-939a-454a-b56e-2eda6054533a" " : " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}}
platform_log.cljs?rel=1471683965087:11 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}}
platform_log.cljs?rel=1471683965087:12 "streaming: " {:type :pub/downstream, :user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :id #uuid "083c6174-939a-454a-b56e-2eda6054533a", :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1", :downstream {:crdt :cdvcs, :op {:method :commit, :version 1, :commit-graph {#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50" [#uuid "0ee1265b-ea49-5d06-9b8c-ddfc38fb35d9"]}, :heads #{#uuid "22d8ed89-2296-54f3-a02c-9ae8d3d1da50"}}}}
```
CLJS2
```
Figwheel: trying to open cljs reload socket
platform_log.cljs?rel=1471683965087:15 #uuid "7a437623-546d-4e3c-829e-f9b7812174f5" "connecting to:" "ws://127.0.0.1:31744"
platform_log.cljs?rel=1471683965087:15 "connecting to" "ws://127.0.0.1:31744"
utils.cljs?rel=1471683962645:38 Figwheel: socket connection established
platform_log.cljs?rel=1471683965087:15 #uuid "7a437623-546d-4e3c-829e-f9b7812174f5" "subscribe: starting subscription " #uuid "fe1cbd6d-29f5-4ebf-ae5c-2647d5b91bbf" " from " #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:11 #uuid "7a437623-546d-4e3c-829e-f9b7812174f5" "subscribe: subscriptions " {}
platform_log.cljs?rel=1471683965087:12 #uuid "7a437623-546d-4e3c-829e-f9b7812174f5" "subscribe: subscriptions " {}
platform_log.cljs?rel=1471683965087:11 "ensure back-subscription"
platform_log.cljs?rel=1471683965087:12 "ensure back-subscription"
platform_log.cljs?rel=1471683965087:11 "pub-out handshake:" {}
platform_log.cljs?rel=1471683965087:12 "pub-out handshake:" {}
platform_log.cljs?rel=1471683965087:11 #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribing to " {}
platform_log.cljs?rel=1471683965087:12 #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribing to " {}
platform_log.cljs?rel=1471683965087:15 #uuid "7a437623-546d-4e3c-829e-f9b7812174f5" "subscribe: finishing " #uuid "fe1cbd6d-29f5-4ebf-ae5c-2647d5b91bbf"
platform_log.cljs?rel=1471683965087:11 "connect: backsubscription?" #uuid "fe1cbd6d-29f5-4ebf-ae5c-2647d5b91bbf" {:type :sub/identities-ack, :id #uuid "fe1cbd6d-29f5-4ebf-ae5c-2647d5b91bbf"}
platform_log.cljs?rel=1471683965087:12 "connect: backsubscription?" #uuid "fe1cbd6d-29f5-4ebf-ae5c-2647d5b91bbf" {:type :sub/identities-ack, :id #uuid "fe1cbd6d-29f5-4ebf-ae5c-2647d5b91bbf"}
platform_log.cljs?rel=1471683965087:11 "starting to publish ops"
platform_log.cljs?rel=1471683965087:12 "starting to publish ops"
platform_log.cljs?rel=1471683965087:15 "connect!: connected " "ws://127.0.0.1:31744"
platform_log.cljs?rel=1471683965087:15 #uuid "7a437623-546d-4e3c-829e-f9b7812174f5" "subscribe: starting subscription " #uuid "7918e9f4-13e1-49b5-876c-0cdf46ff4098" " from " "STAGE-0310"
platform_log.cljs?rel=1471683965087:11 #uuid "7a437623-546d-4e3c-829e-f9b7812174f5" "subscribe: subscriptions " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:12 #uuid "7a437623-546d-4e3c-829e-f9b7812174f5" "subscribe: subscriptions " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:11 "notify all peers of changed subscription"
platform_log.cljs?rel=1471683965087:12 "notify all peers of changed subscription"
platform_log.cljs?rel=1471683965087:11 "pub-out handshake:" {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:12 "pub-out handshake:" {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:11 "starting to publish ops"
platform_log.cljs?rel=1471683965087:12 "starting to publish ops"
platform_log.cljs?rel=1471683965087:15 #uuid "7a437623-546d-4e3c-829e-f9b7812174f5" "subscribe: finishing " #uuid "7918e9f4-13e1-49b5-876c-0cdf46ff4098"
platform_log.cljs?rel=1471683965087:11 #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:12 #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:11 "STAGE-0310" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:12 "STAGE-0310" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:11 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:12 "waiting for CRDTs in stage: " (["mail:[email protected]" #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"])
platform_log.cljs?rel=1471683965087:15 #uuid "7a437623-546d-4e3c-829e-f9b7812174f5" "subscribe: starting subscription " #uuid "7918e9f4-13e1-49b5-876c-0cdf46ff4098" " from " #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:11 #uuid "7a437623-546d-4e3c-829e-f9b7812174f5" "subscribe: subscriptions " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:12 #uuid "7a437623-546d-4e3c-829e-f9b7812174f5" "subscribe: subscriptions " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:11 "ensure back-subscription"
platform_log.cljs?rel=1471683965087:12 "ensure back-subscription"
platform_log.cljs?rel=1471683965087:15 "publication-out ended for " {}
platform_log.cljs?rel=1471683965087:11 "pub-out handshake:" {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:12 "pub-out handshake:" {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:11 #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:12 #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628" "subscribing to " {"mail:[email protected]" #{#uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44"}}
platform_log.cljs?rel=1471683965087:15 #uuid "7a437623-546d-4e3c-829e-f9b7812174f5" "subscribe: finishing " #uuid "7918e9f4-13e1-49b5-876c-0cdf46ff4098"
platform_log.cljs?rel=1471683965087:11 "starting to publish ops"
platform_log.cljs?rel=1471683965087:12 "starting to publish ops"
platform_log.cljs?rel=1471683965087:15 "starting to fetch " #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" #uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" #uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" #uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" #uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" #uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" #uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"} "for" #uuid "f5aaeda2-3e28-42cf-8fe3-f0fdd91d44c0"
platform_log.cljs?rel=1471683965087:11 "fetching new transactions" #{#uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051" #uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758" #uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"} "for" #uuid "f5aaeda2-3e28-42cf-8fe3-f0fdd91d44c0"
platform_log.cljs?rel=1471683965087:12 "fetching new transactions" #{#uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051" #uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758" #uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1"} "for" #uuid "f5aaeda2-3e28-42cf-8fe3-f0fdd91d44c0"
platform_log.cljs?rel=1471683965087:11 "trans assoc-in" #uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051" "(fn [_ new] new)"
platform_log.cljs?rel=1471683965087:12 "trans assoc-in" #uuid "0a560c8a-a1b6-5823-9955-8a6f111e4051" "(fn [_ new] new)"
platform_log.cljs?rel=1471683965087:11 "trans assoc-in" #uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758" "0"
platform_log.cljs?rel=1471683965087:12 "trans assoc-in" #uuid "0b0e9316-7a2b-5336-9cdb-7b1bf5f46758" "0"
platform_log.cljs?rel=1471683965087:11 "trans assoc-in" #uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" "+"
platform_log.cljs?rel=1471683965087:12 "trans assoc-in" #uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" "+"
platform_log.cljs?rel=1471683965087:11 "trans assoc-in" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1" "1"
platform_log.cljs?rel=1471683965087:12 "trans assoc-in" #uuid "1b1349bd-d9c2-5f35-a58c-ee0d8495eef1" "1"
platform_log.cljs?rel=1471683965087:15 #uuid "7a437623-546d-4e3c-829e-f9b7812174f5" "publish-in: " {:user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :type :pub/downstream, :id #uuid "f5aaeda2-3e28-42cf-8fe3-f0fdd91d44c0", :downstream {:crdt :cdvcs, :method :handshake, :op {:commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"], #uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"], #uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"], #uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"], #uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"], #uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"], #uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}, :version 1}}, :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1"}
platform_log.cljs?rel=1471683965087:15 #uuid "7a437623-546d-4e3c-829e-f9b7812174f5" "publish: downstream ops" {:user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :type :pub/downstream, :id #uuid "f5aaeda2-3e28-42cf-8fe3-f0fdd91d44c0", :downstream {:crdt :cdvcs, :method :handshake, :op {:commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"], #uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"], #uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"], #uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"], #uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"], #uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"], #uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}, :version 1}}, :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1"}
platform_log.cljs?rel=1471683965087:11 #uuid "7a437623-546d-4e3c-829e-f9b7812174f5" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:12 #uuid "7a437623-546d-4e3c-829e-f9b7812174f5" "publish: sent new downstream ops"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :type :pub/downstream, :id #uuid "f5aaeda2-3e28-42cf-8fe3-f0fdd91d44c0", :downstream {:crdt :cdvcs, :method :handshake, :op {:commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"], #uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"], #uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"], #uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"], #uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"], #uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"], #uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}, :version 1}}, :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1"} "to" "STAGE-0310"
platform_log.cljs?rel=1471683965087:15 "publication-out: sending " {:user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :type :pub/downstream, :id #uuid "f5aaeda2-3e28-42cf-8fe3-f0fdd91d44c0", :downstream {:crdt :cdvcs, :method :handshake, :op {:commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"], #uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"], #uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"], #uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"], #uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"], #uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"], #uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}, :version 1}}, :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1"} "to" #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628"
platform_log.cljs?rel=1471683965087:15 "stage: pubing " #uuid "f5aaeda2-3e28-42cf-8fe3-f0fdd91d44c0" " : " {:user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :type :pub/downstream, :id #uuid "f5aaeda2-3e28-42cf-8fe3-f0fdd91d44c0", :downstream {:crdt :cdvcs, :method :handshake, :op {:commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"], #uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"], #uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"], #uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"], #uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"], #uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"], #uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}, :version 1}}, :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1"}
platform_log.cljs?rel=1471683965087:11 "streaming: " {:user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :type :pub/downstream, :id #uuid "f5aaeda2-3e28-42cf-8fe3-f0fdd91d44c0", :downstream {:crdt :cdvcs, :method :handshake, :op {:commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"], #uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"], #uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"], #uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"], #uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"], #uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"], #uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}, :version 1}}, :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1"}
platform_log.cljs?rel=1471683965087:12 "streaming: " {:user "mail:[email protected]", :crdt-id #uuid "8e9074a1-e3b0-4c79-8765-b6537c7d0c44", :type :pub/downstream, :id #uuid "f5aaeda2-3e28-42cf-8fe3-f0fdd91d44c0", :downstream {:crdt :cdvcs, :method :handshake, :op {:commit-graph {#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f" [#uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16"], #uuid "11d5b4dc-85e7-5fe5-865a-d256eeaf1b16" [#uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315"], #uuid "0c53dca2-6ccd-501c-a5f3-555b1ac14315" [#uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111"], #uuid "15549bd5-68d7-5ca0-93a6-596e2a9b4111" [#uuid "39b19291-4af7-5aa4-a757-a053d6280fd2"], #uuid "39b19291-4af7-5aa4-a757-a053d6280fd2" [#uuid "2b45d4a7-894a-5215-a997-e8e1f310f637"], #uuid "2b45d4a7-894a-5215-a997-e8e1f310f637" [#uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a"], #uuid "3004b2bd-3dd9-5524-a09c-2da166ffad6a" []}, :heads #{#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"}, :version 1}}, :sender #uuid "789fb243-14f6-43bb-8f1c-7f97c4560628", :host "127.0.0.1"}
platform_log.cljs?rel=1471683965087:11 "committing to: " #uuid "287d576c-47ee-5799-91b0-48a6274aad9c" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "340c9ad3-3355-58f1-a504-6584168a3955"]], :ts #inst "2016-08-24T13:30:48.038-00:00", :parents [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}
platform_log.cljs?rel=1471683965087:12 "committing to: " #uuid "287d576c-47ee-5799-91b0-48a6274aad9c" {:transactions [[#uuid "048495d7-98e8-58f0-82f2-c02c750f4de9" #uuid "340c9ad3-3355-58f1-a504-6584168a3955"]], :ts #inst "2016-08-24T13:30:48.038-00:00", :parents [#uuid "3c764f5e-f1b5-57ed-b4ee-9a24c597389f"], :crdt :cdvcs, :version 1, :author "mail:[email protected]", :crdt-refs #{}}
platform_log.cljs?rel=1471683965087:15 "starting to fetch " #{#uuid "287d576c-47ee-5799-91b0-48a6274aad9c"} "for" #uuid "dbc79e19-d4b1-4f3e-9039-07b8c8cb1f23"
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment