Flamenco/cmd/flamenco-manager
Sybren A. Stüvel 7277286391 Manager: increase 'database open' timeout to 1 minute
Increase the 'database open' timeout from 5 seconds to 1 minute. This
timeout also covers database migrations, and the recently added one that
adds a bunch of `NOT NULL` clauses could time out with the old 5 sec
limit.

The reason this takes long, is that SQLite doesn't directly support
adding `NOT NULL` clauses to columns. The only way to do this is to
create a new table with the desired schema, copy all data over, then
drop the old table. And with a big enough database, this takes time.
2024-03-06 11:50:14 +01:00
..
main.go Manager: increase 'database open' timeout to 1 minute 2024-03-06 11:50:14 +01:00
webservice.go Manager: Introduce event bus system 2024-02-03 22:55:23 +01:00