Skip to content

Commit

Permalink
feat:add 1.29 (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
maheshrayas authored Feb 16, 2023
1 parent 44237ef commit c0d0c1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,7 @@ impl Finder for FileSystem {
}
Ok(())
});
if let Err(e) = file_return {
return Err(e);
}
let _ = file_return?;
let res: Vec<_> = receiver.iter().collect();
let mut temp_table: Vec<TableDetails> = vec![];
for (kind, supported_api_version, deprecated_api_version, name, path, k8_version) in res {
Expand Down
2 changes: 1 addition & 1 deletion src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use std::{fs::File, io::Write};
use tokio::task::JoinHandle;

pub type ClusterOP = Vec<JoinHandle<Result<Vec<TableDetails>>>>;
pub const K8_VERSIONS: [&str; 6] = ["1.16", "1.22", "1.25", "1.26", "1.27", "custom"];
pub const K8_VERSIONS: [&str; 7] = ["1.16", "1.22", "1.25", "1.26", "1.27", "1.29", "custom"];

#[derive(Serialize, Deserialize, Default, Debug)]
pub struct JsonDetails {
Expand Down

0 comments on commit c0d0c1d

Please sign in to comment.