feat: input admin secret to gramine as env var #86
Annotations
1 error and 2 warnings
tests
The action 'Wait for enclave to listen' has timed out after 25 minutes.
|
redundant pattern matching, consider using `is_err()`:
crates/cli/src/handler/enclave_start.rs#L79
warning: redundant pattern matching, consider using `is_err()`
--> crates/cli/src/handler/enclave_start.rs:79:20
|
79 | if let Err(_) = std::env::var("ADMIN_SK") {
| -------^^^^^^---------------------------- help: try: `if std::env::var("ADMIN_SK").is_err()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
= note: `#[warn(clippy::redundant_pattern_matching)]` on by default
|
redundant pattern matching, consider using `is_err()`:
crates/cli/src/handler/enclave_start.rs#L79
warning: redundant pattern matching, consider using `is_err()`
--> crates/cli/src/handler/enclave_start.rs:79:20
|
79 | if let Err(_) = std::env::var("ADMIN_SK") {
| -------^^^^^^---------------------------- help: try: `if std::env::var("ADMIN_SK").is_err()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
= note: `#[warn(clippy::redundant_pattern_matching)]` on by default
|