Skip to content

Commit

Permalink
error handling for keyring if CI failed
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Liu <[email protected]>
  • Loading branch information
austin362667 committed Aug 14, 2024
1 parent 273d6f6 commit a3ffc5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flyteidl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,8 @@ pub mod _flyteidl_rust {
access_token
}
Err(error) => {
panic!("Failed at retrieving keyring: {:?}", error);
println!("Failed at retrieving keyring: {:?}", error);
"".to_string()
}
};

Expand Down

0 comments on commit a3ffc5e

Please sign in to comment.