Skip to content

Commit

Permalink
Temp remove filter deviation check
Browse files Browse the repository at this point in the history
  • Loading branch information
chimp1984 committed Nov 26, 2020
1 parent 99d5652 commit aa74476
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,12 @@ public enum InventoryItem {
Alert("Alert",
true,
new DeviationByIntegerDiff(1, 1), 2),
// Deactivate filter check as we have too many filters online by a mistake should be cleaned up in a few days after 1.5.
Filter("Filter",
true,
new DeviationByIntegerDiff(1, 1), 2),
true),
/* Filter("Filter",
true,
new DeviationByIntegerDiff(1, 1), 2),*/
Mediator("Mediator",
true,
new DeviationByIntegerDiff(1, 1), 2),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
@Getter
public class RequestInfo {
// Carries latest commit hash of feature changes (not latest commit as that is then the commit for editing that field)
public static final String COMMIT_HASH = "7f83d1b3";
public static final String COMMIT_HASH = "b67c5e90";

private final long requestStartTime;
@Setter
Expand Down

0 comments on commit aa74476

Please sign in to comment.