Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compile error in release mode #1517

Merged
merged 3 commits into from Nov 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion axum/CHANGELOG.md
Expand Up @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

# Unreleased

- None.
- **fixed:** Fix compile error in release mode ([#1517])

[#1517]: https://github.com/tokio-rs/axum/pull/1517

# 0.6.0-rc.3 (8. November, 2022)

Expand Down
2 changes: 2 additions & 0 deletions axum/src/extract/matched_path.rs
Expand Up @@ -135,6 +135,8 @@ pub(crate) fn set_matched_path_for_request(
} else {
#[cfg(debug_assertions)]
panic!("should always have a matched path for a route id");
#[cfg(not(debug_assertions))]
return;
davidpdrsn marked this conversation as resolved.
Show resolved Hide resolved
};

let matched_path = append_nested_matched_path(matched_path, extensions);
Expand Down