Files
neon/pageserver
Kirill Bulatov 99808558de Avoid duplicate timeline insert (#3326)
`initialize_with_lock` inserts `Arc<Timeline>` before returning it:
https://github.com/neondatabase/neon/blob/c1731bc4f05a6868ded977bf8a1cfb3eb496155e/pageserver/src/tenant.rs#L222

but `setup_timeline` function did another insert, which got removed in this PR:
https://github.com/neondatabase/neon/blob/c1731bc4f05a6868ded977bf8a1cfb3eb496155e/pageserver/src/tenant.rs#L486


On top, a better comment and function renames are added.
2023-01-13 12:05:54 +00:00
..