mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-08 22:12:56 +00:00
TenantInfo: expose generation number (#6348)
Generally useful when debugging / troubleshooting. I found this useful when manually duplicating a tenant from a script[^1] where I can't use `neon_fixtures.Pageserver.tenant_attach`'s automatic integration with the neon_local's attachment_service. [^1]: https://github.com/neondatabase/neon/pull/6349
This commit is contained in:
committed by
GitHub
parent
1c432d5492
commit
cd48ea784f
@@ -633,7 +633,7 @@ async fn collect_eviction_candidates(
|
||||
|
||||
let mut candidates = Vec::new();
|
||||
|
||||
for (tenant_id, _state) in &tenants {
|
||||
for (tenant_id, _state, _gen) in &tenants {
|
||||
if cancel.is_cancelled() {
|
||||
return Ok(EvictionCandidates::Cancelled);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user