Tomasz Grodzki
Tomasz Grodzki
HTTP support has been added since 1.7.0, but no TLS support yet.
This should be easily achievable using https://github.com/cretz/bine, but would require a `tor` binary to be accessible. In theory we could embed one into a binary, but it would inflate the...
I'm now in need for shrinking my bolt db file although happy to do this offline. Was thinking of creating a CLI tool for this, but what about adding something...
Ah, cool, this will definitely save me some time, especially that it turned out this is not so trivial for larger DBs as we need to commit transactions periodically. Also...
Code replicating the problem: ``` go package main import ( "fmt" "github.com/boltdb/bolt" ) func main() { db, _ := bolt.Open("/tmp/bolt.db", 0666, nil) defer db.Close() tx, _ := db.Begin(true) defer tx.Rollback()...
The problem with empty LOG15_ERROR is due to this code in [`logfmt`](https://github.com/inconshreveable/log15/blob/master/format.go#L104): ``` go k, ok := ctx[i].(string) v := formatLogfmtValue(ctx[i+1]) if !ok { k, v = errorKey, formatLogfmtValue(k) //...
This should be fixed now. Please use the following command (note `v2` at the end): ``` go install github.com/alphasoc/flightsim/v2@latest ``` If the problem persist, try: ``` go clean -cache ```...