Fix typo in primary key header name (X-Meiroil → X-Miroir)

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
jedarden 2026-05-09 15:36:41 -04:00
parent d32cebd19f
commit bdb32cdfe9

View file

@ -74,7 +74,7 @@ async fn get_primary_key(
}
// Check for primary key in query string/header
if let Some(pk) = headers.get("X-Meiroil-Primary-Key") {
if let Some(pk) = headers.get("X-Miroir-Primary-Key") {
if let Ok(pk_str) = pk.to_str() {
return Ok(pk_str.to_string());
}