Skip to content

Commit

Permalink
few fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
doziestar committed Jun 24, 2024
1 parent d71d180 commit dacbb74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/monitoring.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ fn setup_grafana() -> Result<(), Box<dyn Error>> {
run_command("systemctl", &["start", "grafana-server"])?;
run_command("systemctl", &["enable", "grafana-server"])?;

// Here you might want to add code to configure Grafana via its API
// Here we will add code to configure Grafana via its API
// For example, adding data sources, creating dashboards, etc.

Ok(())
Expand Down
2 changes: 1 addition & 1 deletion src/rollback.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ impl RollbackManager {
}

pub fn commit_snapshot(&self, _snapshot_id: usize) -> Result<(), Box<dyn Error>> {
// In a real implementation, we might want to compress the snapshot or write it to disk
// we might want to compress the snapshot or write it to disk
Ok(())
}

Expand Down

0 comments on commit dacbb74

Please sign in to comment.