This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-01-13
Channels
- # announcements (2)
- # beginners (29)
- # boot (122)
- # cider (9)
- # clara (6)
- # cljs-dev (9)
- # clojure (27)
- # clojure-art (3)
- # clojure-dusseldorf (5)
- # clojure-europe (1)
- # clojure-india (2)
- # clojure-losangeles (1)
- # clojure-spec (29)
- # clojure-uk (2)
- # clojurescript (56)
- # cursive (11)
- # datomic (9)
- # fulcro (8)
- # liberator (1)
- # off-topic (2)
- # other-lisps (1)
- # quil (37)
- # re-frame (2)
- # reitit (1)
- # ring (4)
- # test-check (4)
- # tools-deps (3)
In a talk a couple years ago, David Nolen talked about work on a Client API library for JavaScript. I’m guessing that was discontinued?
Due to account restrictions in our company, we are not allowed to create our own VPC’s. There is one provided VPC which we must use. Is there a way to setup datomic cloud inside of this existing VPC?
I'm getting an error when I try to connect to Datomic GUI, does anybody know how to repair it?
Console started on port: 8080
dev = datomic:
Open in your browser (Chrome recommended)
java.lang.NullPointerException
at clojure.core$namespace.invokeStatic(core.clj:1600)
at clojure.core$namespace.invoke(core.clj:1594)
at clojure.core$comp$fn__6823.invoke(core.clj:2542)
at clojure.core$group_by$fn__9430.invoke(core.clj:7031)
@okilimnik what version are you on? Do you still see this error with the latest? You can copy the full exception out from the logs (in the datomic/logs directory if you’re running local).
I've found that the reason of the error is this type of migration:
(def foo-bar-v1
[{:db/ident :foo/bar
:db/valueType :db.type/ref ;;any type
:db/cardinality :db.cardinality/many
:db.install/_attribute :db.part/db}])
(def retract-foo-bar
[[:db/retract :foo/bar :db/ident :foo/bar]])
(def foo-bar-v2
[{:db/ident :foo/bar
:db/valueType :db.type/string ;;new type
:db/cardinality :db.cardinality/one
:db.install/_attribute :db.part/db}])
How to repair the database now?