< instagibbs>
pretty cool PR dashboard by pierre rochard https://bitcoinacks.com/ , filter by number of ACKs, conflict, authors, etc
< instagibbs>
already suggested to display "stale ACKs" vs fresh
< fanquake>
instagibbs nice
< bitcoin-git>
[bitcoin] achow101 opened pull request #13112: Have gArgs be aware of the arguments and error on unknown args (master...gargs-know-args) https://github.com/bitcoin/bitcoin/pull/13112
< wumpus>
jonasschnelli: re: lmdb, I remember that you have to increase the map size when the database grows to a certain size
< wumpus>
jonasschnelli: that does not happen automatically
< wumpus>
jonasschnelli: (not sure if that was your question though)
< bitcoin-git>
[bitcoin] practicalswift opened pull request #13113: tests: Make it clear that MAX_INV_SZ is not covered by functional tests (master...add-note-about-MAX_INV_SZ) https://github.com/bitcoin/bitcoin/pull/13113
< jonasschnelli>
wumpus: re lmdb: you mean setting a map size with mdb_env_set_mapsize to – say 4GB – right after the environment creation is not enough?
< jonasschnelli>
monitoring the db size and inject a mdb_env_set_mapsize at the right time sounds strange
< bitcoin-git>
[bitcoin] practicalswift opened pull request #13114: Add Clang thread safety annotations for variables guarded by cs_KeyStore (master...guarded-by-cs_KeyStore) https://github.com/bitcoin/bitcoin/pull/13114
< bitcoin-git>
[bitcoin] practicalswift opened pull request #13115: Add Clang thread safety annotations for variables guarded by cs_addrMan (master...guarded-by-cs_addrMan) https://github.com/bitcoin/bitcoin/pull/13115
< bitcoin-git>
[bitcoin] practicalswift opened pull request #13116: Add Clang thread safety annotations for variables guarded by cs_{rpcWarmup,nTimeOffset,warnings} (master...guarded-by-misc) https://github.com/bitcoin/bitcoin/pull/13116
< roasbeef>
jonasschnelli: seems easier to just set the size of the mmap to "big enough" (as it's just virtual memory) and not have to worry about dynamically re-sizing it