proxy: add more missing warm logging (#7133)

## Problem

There is one more missing thing about cached connections for
`cold_start_info`.

## Summary of changes

Fix and add comments.
This commit is contained in:
Anna Khanova
2024-03-15 16:13:15 +05:00
committed by GitHub
parent 49bc734e02
commit 46098ea0ea
2 changed files with 4 additions and 0 deletions

View File

@@ -84,6 +84,7 @@ impl PoolingBackend {
};
if let Some(client) = maybe_client {
info!("cold_start_info=warm");
ctx.set_cold_start_info(ColdStartInfo::Warm);
return Ok(client);
}