Skip to content

Commit 2e3b885

Browse files
authored
trivial: Remove stray dbg added in #7374 (#7817)
The method was copied more or less without modification, but I added a `dbg!` on this line and forgot to remove it. https://github.com/oxidecomputer/omicron/pull/7374/files#diff-20ba9694e6963beb9b707281dc9837c9c41386316c82441ca72a6c0801dd9b8fR63
1 parent 8c13222 commit 2e3b885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nexus/src/app/login.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ impl super::Nexus {
6060
let (authenticated_subject, relay_state_string) =
6161
match identity_provider {
6262
IdentityProviderType::Saml(saml_identity_provider) => {
63-
let body_bytes = dbg!(body_bytes.as_str())?;
63+
let body_bytes = body_bytes.as_str()?;
6464
saml_identity_provider.authenticated_subject(
6565
&body_bytes,
6666
self.samael_max_issue_delay(),

0 commit comments

Comments
 (0)