Skip to content

Commit e7158ec

Browse files
committed
Merge branch 'main' into feature/header-constants
2 parents 242dfdc + 3b18df4 commit e7158ec

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2828

2929
## [Unreleased]
3030

31+
### Added
32+
- Added basic unit tests
33+
3134
### Changed
3235
- Upgrade to rust 1.87.0
3336
- Upgrade to fastly-cli 11.3.0
37+
- Changed to use constants for headers
3438

3539
## [1.0.6] - 2025-05-29
3640

crates/fastly/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ fn handle_ad_request(settings: &Settings, mut req: Request) -> Result<Response,
330330
let fastly_trace_id =
331331
env::var("FASTLY_TRACE_ID").unwrap_or_else(|_| "unknown".to_string());
332332

333-
println!("Fastly Jason PoP: {}", fastly_pop);
333+
println!("Fastly PoP: {}", fastly_pop);
334334
println!("Fastly Compute Variables:");
335335
println!(" - FASTLY_CACHE_GENERATION: {}", fastly_cache_generation);
336336
println!(" - FASTLY_CUSTOMER_ID: {}", fastly_customer_id);

0 commit comments

Comments
 (0)