Skip to content

Commit

Permalink
Fix issues found by the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
nand4011 committed Apr 3, 2024
1 parent bcc82a1 commit f32a95f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion momento/src/commands/cloud_linter/elasticache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,5 +231,5 @@ async fn convert_to_resources(
}
};
}
return Ok(resources);
Ok(resources)
}
2 changes: 1 addition & 1 deletion momento/src/commands/cloud_linter/metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ where
) -> Result<(), CliError> {
let metric_target = self.create_metric_target()?;
let metrics =
query_metrics_for_target(&metrics_client, Arc::clone(&limiter), metric_target).await?;
query_metrics_for_target(metrics_client, Arc::clone(&limiter), metric_target).await?;
self.set_metrics(metrics);
self.set_metric_period_seconds(60 * 60 * 24);

Expand Down

0 comments on commit f32a95f

Please sign in to comment.