Robert
Robert
I just spent quite a while digging, first through the source, finally ending up at http://hackage.haskell.org/package/text-1.2.4.0/docs/Data-Text.html#v:toCaseFold while trying to figure out what the result of `toCaseFold` is actually like. It...
Here's some protobuf for which the elm protobuf generator results in elm code that fails to compile. For one, the `MATCH` enum value and the `match` oneof field collide. And...
I'd like to reuse the firebase decoder for a generic JWT-authenticated backend (postgrest specifically), which uses the standard exp, iat, user_id fields. However, this feels wrong with the existing API,...
With a recent build of graphql-engine: ``` $ graphql-engine version Fatal Error: Either of --metadata-database-url or --database-url option expected $ graphql-engine --database-url foo version Hasura GraphQL Engine: v2.0.5 ``` I'd...
pkgs.pkgsStatic on Linux is essentially what static-haskell-nix does, except it doesn't appear to deal with system libraries properly. But eventually this should obsolete static-haskell-nix, which seems unmaintained.
Preparatory work for #2348, as discussed with @steve-chavez. This loses the `db-pool-timeout` config option (and timing out of idle connections at all), and fixes #2401.
The intended behaviour when receiving `SIGUSR1` is for the PostgREST process to refresh the state of the database (reload schema cache); the new state is expected to take effect for...
E.g., raising the post-signal sleep in `test_admin_ready_includes_schema_cache_state` from 0.1 to 2 causes the test to hang, because postgrest hangs writing to the stdout pipe, see #2389. It's quite confusing when...
This pulls in updated dependencies that (hackily) avoid the `useAsCString` copy by ensuring `bytestring-strict-builder` generates 0-terminated bytestrings, and using `unsafeUseAsCString`. It's not something we'd want to roll with in this...