This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-02-22
Channels
- # beginners (55)
- # cider (22)
- # cljs-dev (123)
- # cljsrn (75)
- # clojars (1)
- # clojure (92)
- # clojure-europe (2)
- # clojure-italy (16)
- # clojure-nl (6)
- # clojure-spec (17)
- # clojure-uk (77)
- # clojured (2)
- # clojurescript (39)
- # core-async (8)
- # cursive (4)
- # data-science (1)
- # datomic (22)
- # duct (4)
- # editors (21)
- # emacs (10)
- # events (4)
- # fulcro (116)
- # graphql (8)
- # immutant (3)
- # jackdaw (1)
- # juxt (3)
- # kaocha (4)
- # luminus (1)
- # mount (1)
- # nrepl (32)
- # off-topic (34)
- # other-languages (5)
- # pedestal (32)
- # reagent (1)
- # ring (6)
- # ring-swagger (7)
- # shadow-cljs (5)
- # spacemacs (3)
- # specter (1)
- # sql (1)
- # vim (21)
@U1QJACBUM was https://forum.datomic.com/t/datomic-transit-java-dependencies/846 fixed in this release?
no unfortunately we had already submitted the CFT to AWS at the time of your report. We are still investigating that issue.
On eu-central-1
, I'm getting the following error for updating query groups:
1 validation error detected: Value '' at 'imageId' failed to satisfy constraint: Member must have length greater than or equal to 1
I'm guessing there's something going on with this bit in the template:
"ImageId": {
"Fn::FindInMap": [
"RegionMap",
{
"Ref": "AWS::Region"
},
"Datomic"
]
},
Yeah, no AMIs for most regions. Is this intentional?
"RegionMap": {
"us-east-1": {
"Datomic": "ami-069156466c1112347"
},
"us-east-2": {
"Datomic": ""
},
"us-west-2": {
"Datomic": ""
},
"eu-west-1": {
"Datomic": ""
},
"eu-central-1": {
"Datomic": ""
},
"ap-southeast-2": {
"Datomic": "",
"Bastion": ""
}
}
@U06B8J0AJ is this only with the query group template? Or have you identified it in another template?
Ah Yes! Weโve confirmed an issue with the query-group template on the Marketplace page
is there a way to pull the actual ident value as opposed to a :db/id
if that ident is a ref on another fact? I have something like :todo/type
and where type
is a ref to an ident. pulling :todo/type
returns the :db/id
of the ref, but Iโd like it to return e.g. todo.types/chore