fulcro

Book: http://book.fulcrologic.com, Community Resources: https://fulcro-community.github.io/, RAD book at http://book.fulcrologic.com/RAD.html
tony.kay 2021-06-24T01:20:37.249300Z

What version of Fulcro, and have you customized anything in the app? This is defeinitely not std behavior

tony.kay 2021-06-24T01:22:33.249500Z

ah, you don’t have an ident on the component, which is a very non-standard thing to do with loaded data. It could be there’s an undiscovered-till-now bug with sweep merge in that code path, which almost no one (well, at least in my circle) uses.

tony.kay 2021-06-24T01:23:01.249700Z

unless you’re making up a small example for this thread, and are not actually showing the real code you’re using

tony.kay 2021-06-24T01:23:17.249900Z

otherwise, it could possibly be a regression…but I think there are tests covering most of that

tvaughan 2021-06-24T01:45:34.251400Z

Just something I made up to help illustrate the problem. I’ll post a complete example tomorrow

sheluchin 2021-06-24T13:18:43.258300Z

How can I troubleshoot Fulcro Inspect giving me a No app connected error, while the extension icon is lit up and says Has access to this site. It seems to happen periodically and I'm not sure why.

Jakub Holý 2021-06-25T12:50:59.274Z

I never had problems upgrading so I recommend using the latest Fulcro and inspect. There are always worthy improvements 🙂

sheluchin 2021-06-25T12:53:29.274300Z

Thanks for the advice. I'm planning on doing that upgrade after I squash a couple bugs in my own code. Inspect hasn't given me any problems since I posted the message yesterday so it's not terribly pressing at the moment.

sheluchin 2021-06-24T13:24:46.258400Z

Reinstalling the extension seems to fix it. I'm not on the latest versions of everything, maybe an update will help.

tony.kay 2021-06-24T14:36:18.258600Z

There is definitely a minor bug or two in Inspect. Reinstalling fixes most problems (and is very rarely necessary). Sometimes the doesn’t happen until it is open and a change is made in-app.

sheluchin 2021-06-24T14:39:06.258800Z

Thanks, that's good enough for me. Not the biggest inconvenience. I was more concerned about it happening as a result of some mistake I made.

genekim 2021-06-24T20:14:29.263500Z

Question that probably has super obvious answer — how do I run Fulcro / Fulcro RAD server in production mode? I can’t find a main or any obvious entry point that I can run from command line. [scratching head] (It would be great if that were in the Makefile as a way to run server in “headless / no REPL” mode.) Thanks!!

tony.kay 2021-06-24T21:32:47.263800Z

You mean the demo?

tony.kay 2021-06-24T21:33:45.264Z

I didn’t make one. The fulcro template has one…basically you just do what is in the start from dev: Run mount/start from some function, with the config set to a prod one if you want

genekim 2021-06-24T21:54:10.266200Z

Awesome! Totally got it — can I submit a PR to add something similar for the RAD demo? Thx @tony.kay!!

tony.kay 2021-06-24T21:56:13.266400Z

if you want

genekim 2021-06-24T22:38:16.266600Z

That was super helpful, @tony.kay — here’s the PR for fulcro-rad-demo: https://github.com/fulcrologic/fulcro-rad-demo/pull/26

❤️ 1