This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-06-27
Channels
- # babashka (39)
- # beginners (256)
- # calva (33)
- # cider (4)
- # clj-otel (8)
- # clojure (48)
- # clojure-denmark (3)
- # clojure-europe (21)
- # clojure-nl (1)
- # clojure-norway (45)
- # clojure-poland (1)
- # clojure-sweden (2)
- # clojure-uk (5)
- # clojuredesign-podcast (5)
- # clr (13)
- # core-async (9)
- # cursive (12)
- # data-science (2)
- # datahike (80)
- # datomic (5)
- # hyperfiddle (14)
- # introduce-yourself (4)
- # jobs (4)
- # lsp (7)
- # missionary (6)
- # polylith (25)
- # proletarian (5)
- # releases (1)
- # shadow-cljs (12)
- # squint (7)
- # xtdb (2)
Is hyperfiddle.electric-ui4/tag-picker
supposed to skip calls to Options
if you type too fast for these calls to return in time?
If so, that doesn't seem to work for me. I get one Options
callback for every keystroke, so the options popup keeps updating several seconds after I stop typing
haven't tried to replicate, but do your option DOM elements have a unique key if in e/for-by?
there are a couple things this could be - the ui4 namespace is not in production anywhere, so the short answer is we don’t understand how it behaves in real world and it’s certainly wrong
all our work on production crud forms is happening on v3
Thanks! After trying a few things, I vendored it and slapped a throttle (I know, I know) to it and that is satisfactory for now. If I have similar problems once v3 is out I'll look deeper
Scaling question for Electric Clojure on http://Fly.io: is there anything special I need to configure if I want http://Fly.io to scale up in the event of an extreme traffic spike? Currently only using Electric for frontend rendering, but obviously it is served by the backend.
Does the electric-starter-app support health checks on http://Fly.io? I can't get either TCP or HTTP health checks to work, e.g. in fly.toml:
[[services.tcp_checks]]
interval = '15s'
timeout = '2s'
grace_period = '1s'
[[services.http_checks]]
interval = 10000
grace_period = "5s"
method = "get"
path = "/"
protocol = "http"
restart_limit = 0
timeout = 2000
tls_skip_verify = false
Problem is that GitHub Actions runs more a looong time waiting for fly health checks to pass, and have to cancel the workflows manually.this seems to work for me, not sure if it's correct:
[[http_service.checks]]
grace_period = "1m"
thx @U066TMAKS, is your server_jetty.clj
file identical to electric-starter-app?
@U066TMAKS do your TCP checks work? If yes, what are your parameters?
doesn't work :/
eventually GH actions times out after about ~8 minutes, but app gets deployed.
also tried with "https" health check, in case there was an HTTP -> HTTPS redirect (which there is), but no dice.
thx @U066TMAKS, I got the HTTP health working with grace_period = "1m"
, but still struggling with the TCP health check.
Is the TCP health check supposed to work?