Skip to content

Commit

Permalink
Fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
pricem14pc committed Oct 2, 2023
2 parents c345dd0 + 40090ac commit 4881137
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
6 changes: 2 additions & 4 deletions _infra/helm/case/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,9 @@ description: A Helm chart for Kubernetes
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 12.0.8
version: 12.0.14

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 12.0.8
appVersion: 12.0.14

Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public static class ClassifiersBuilder {
private static final String REMINDER = "REMINDER";
private static final String NOTIFICATION = "NOTIFICATION";
// a region of YY appears to be any region that isnt england
private static final String NOT_ENGLAND = "YY";
private static final String NI_REGION_CODE = "YY";

private String actionType;
private String legalBasis;
Expand All @@ -115,8 +115,8 @@ public Classifiers build() {
return new Classifiers(actionType, "", "", "", "");
}

// if not not england is england. welcome to ras-rm.
if (!NOT_ENGLAND.equals(region)) {
// if NOT NI then England/Wales
if (!NI_REGION_CODE.equals(region)) {
region = "";
}

Expand Down

0 comments on commit 4881137

Please sign in to comment.