Skip to content

Commit

Permalink
fix: Remove replace from transfer response V2
Browse files Browse the repository at this point in the history
  • Loading branch information
cap-ang committed Oct 31, 2023
1 parent 5c35126 commit 760da03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions helm/values-uat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ microservice-chart:
cpu: "3.0" # high limit used only in startup phase
autoscaling:
enable: true
minReplica: 3
maxReplica: 10
minReplica: 1
maxReplica: 3
pollingInterval: 10 # seconds
cooldownPeriod: 50 # seconds
triggers:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ private CtTransferPAV2 getTransferResponseV2(
transferPa.setIdTransfer(Integer.parseInt(transfer.getIdTransfer()));
transferPa.setRemittanceInformation(transfer.getRemittanceInformation());
transferPa.setTransferAmount(BigDecimal.valueOf(transfer.getAmount()));
transferPa.setTransferCategory(transfer.getCategory().replace("/", ""));
transferPa.setTransferCategory(transfer.getCategory());
return transferPa;
}

Expand Down

0 comments on commit 760da03

Please sign in to comment.