Skip to content
This repository has been archived by the owner on Jul 25, 2022. It is now read-only.

Commit

Permalink
EX-2312 cloudsync: Fix cloudsync lipe config (#2451)
Browse files Browse the repository at this point in the history
Cloudsync lipe config had a few filesync references in it

Signed-off-by: Ben Evans <beevans@whamcloud.com>
  • Loading branch information
beevans authored Dec 22, 2020
1 parent f8b78b5 commit f8a6f61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions iml-api/src/graphql/stratagem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,12 +234,12 @@ impl StratagemMutation {
groups: vec!["cloudsync".into()],
},
groups: vec![stratagem::StratagemGroup {
name: "filesync".into(),
name: "cloudsync".into(),
rules: vec![stratagem::StratagemRule {
action: "LAT_SHELL_CMD_FID".into(),
expression: expression.clone(),
argument: "filesync".into(),
counter_name: Some("filesync".into()),
argument: "cloudsync".into(),
counter_name: Some("cloudsync".into()),
}],
}],
};
Expand Down

0 comments on commit f8a6f61

Please sign in to comment.