talmeme

Results 8 issues of talmeme

#3085: If Unix domain socket file exists then Vapor crashes when starting instead of taking over the socket file. This PR fixes by deleting the socket file if it exists.

semver-patch

### Describe the bug In the app's `configure.swift`, `func configure()`, set to use Unix domain socket (UDS): ``` app.http.server.configuration.address = .unixDomainSocket(path: unixDomainSocket) ``` If the UDS file exists then the...

bug

I'm using CreateAPI-generated client code with Vapor. Vapor already integrates async-http-client. As such, I'm not using Get and have added my own `Request`-compatible type as per `AdvancedSetup.md`. However, Vapor has...

Quick fix that I'm using: Add these lines after `sqlite3_open()` in `main.c`'s `sql_open()` : ``` status = sqlite3_enable_load_extension(conn, 1); if (status != SQLITE_OK) janet_panic(sqlite3_errmsg(conn)); ``` This enables the SQL function...

[SQLcipher](https://github.com/sqlcipher/sqlcipher) is a standalone fork of the [SQLite](https://www.sqlite.org/) database library that adds 256 bit AES encryption of database files and other security features like: - on-the-fly encryption - tamper detection...

enhancement

In some flows with "openid" profile-related scopes, the identity provider sends an id_token together with the access_token or authorization_code to the app. In these cases, save the id_token immediately in...

SVG generated lacks space before the word width; both Chromium and Firefox fail to display when loading the SVG via `img` tag. ``` ... ``` Adding a space (and quotes...