Skip to content

Commit

Permalink
Fix missing bracket after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
donaltuohy committed Jan 9, 2025
1 parent 405d8dc commit e8f41bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions crates/ev-cli/src/commands/enclave/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ impl std::convert::From<InitArgs> for EnclaveConfig {
trusted_headers: convert_comma_list(val.trusted_headers).unwrap_or_default(),
healthcheck,
service: val.port.map(ServiceSettings::new),
attestation_cors: None,
}
}
}
Expand Down
1 change: 1 addition & 0 deletions crates/ev-enclave/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -764,6 +764,7 @@ mod test {
healthcheck: Some(crate::config::HealthcheckConfig::Table {
path: "/health".to_string(),
port: Some(8080),
}),
attestation_cors: Some(AttestationCors {
origin: "*".to_string(),
}),
Expand Down

0 comments on commit e8f41bf

Please sign in to comment.