Joe Nelson
Joe Nelson
Wow fast response Keith, thanks! That patch seems to fix the error message I encountered before. However, `ninja check-llvm-toolchain` still fails and I don't know why. I created a fresh...
I started over on a fresh VM and got commit bd5ecae8e6ad517410fed0143d95fedaf423e2c7 to build successfully. However, `ninja check-llvm-toolchain` fails. Here are the relevant errors at the end of the output: ```...
Not sure about other people's needs, but I don't personally use C++.
Concurrency issues are handled by the database. I wrote an article about the different kinds of concurrency problems and how PostgreSQL handles them: https://begriffs.com/posts/2017-08-01-practical-guide-sql-isolation.html See which of those issues might...
One more note: if we turn the isolation higher we can run into the `serialization_failure` exception. The client would need to retry the request if it received that exception, or...
Thanks for reporting. Looks like it's searching for `func.sh` in the wrong place. I wonder if the problem is how it computes `$SCRIPT_DIR`: https://github.com/begriffs/haskell-vim-now/blob/0c710c5f9170a740c38845ecd89de9498532642f/scripts/setup.sh#L3-L4 [This](https://stackoverflow.com/questions/35006457/choosing-between-0-and-bash-source) article says `BASH_SOURCE` was introduced...
Can you give an example of how the OpenAPI results are incorrect?
Try using a complete URI for server-proxy-uri. There's an example in https://postgrest.readthedocs.io/en/v0.4/admin.html#configuration
For debugging let's see if a full uri works, and then if so how much we are able to omit and have it continue to work.
Any progress?