Skip to content

Commit

Permalink
[PAGOPA-2263] fix: resolved impossibility to handle large flows (#70)
Browse files Browse the repository at this point in the history
* [PAGOPA-2263] fix: removed upper limit on fdr_history max payments
* [PAGOPA-2263] fix: explicitly added nginx timeout in UAT

---------

Co-authored-by: pagopa-github-bot <[email protected]>
  • Loading branch information
andrea-deri and pagopa-github-bot authored Oct 9, 2024
1 parent b77c8d0 commit d8df31d
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: pagopa-fdr-chart
description: Flussi di rendicontazioni
type: application
version: "1.23.0"
appVersion: "1.0.20"
version: "1.27.0"
appVersion: "1.0.20-4-PAGOPA-1976"
dependencies:
- name: microservice-chart
version: 3.0.0
Expand Down
2 changes: 1 addition & 1 deletion helm/values-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ microservice-chart:
fullnameOverride: ""
image:
repository: ghcr.io/pagopa/pagopa-fdr
tag: 1.0.20
tag: 1.0.20-4-PAGOPA-1976
pullPolicy: Always
readinessProbe:
httpGet:
Expand Down
8 changes: 7 additions & 1 deletion helm/values-uat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ microservice-chart:
fullnameOverride: ""
image:
repository: ghcr.io/pagopa/pagopa-fdr
tag: 1.0.20
tag: 1.0.20-4-PAGOPA-1976
pullPolicy: Always
readinessProbe:
httpGet:
Expand Down Expand Up @@ -94,5 +94,11 @@ microservice-chart:
create: true
host: "weuuat.fdr.internal.uat.platform.pagopa.it"
path: /pagopa-fdr-service(/|$)(.*)
# currently set ingress timeout to 5m, until async handling will be introduced
annotations:
nginx.ingress.kubernetes.io/proxy-connect-timeout: "300"
nginx.ingress.kubernetes.io/proxy-read-timeout: "300"
nginx.ingress.kubernetes.io/proxy-send-timeout: "300"
nginx.ingress.kubernetes.io/send_timeout: "300"
canaryDelivery:
create: false
2 changes: 1 addition & 1 deletion openapi/openapi_internal.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "FDR - Flussi di rendicontazione (local)",
"description": "Manage FDR ( aka \"Flussi di Rendicontazione\" ) exchanged between PSP and EC",
"termsOfService": "https://www.pagopa.gov.it/",
"version": "1.0.20"
"version": "1.0.20-4-PAGOPA-1976"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion openapi/openapi_organization.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "FDR - Flussi di rendicontazione (local)",
"description": "Manage FDR ( aka \"Flussi di Rendicontazione\" ) exchanged between PSP and EC",
"termsOfService": "https://www.pagopa.gov.it/",
"version": "1.0.20"
"version": "1.0.20-4-PAGOPA-1976"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion openapi/openapi_psp.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "FDR - Flussi di rendicontazione (local)",
"description": "Manage FDR ( aka \"Flussi di Rendicontazione\" ) exchanged between PSP and EC",
"termsOfService": "https://www.pagopa.gov.it/",
"version": "1.0.20"
"version": "1.0.20-4-PAGOPA-1976"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>it.gov.pagopa</groupId>
<artifactId>pagopa-fdr</artifactId>
<version>1.0.20</version>
<version>1.0.20-4-PAGOPA-1976</version>
<properties>
<compiler-plugin.version>3.11.0</compiler-plugin.version>
<lombok.version>1.18.26</lombok.version>
Expand Down
3 changes: 1 addition & 2 deletions src/main/resources/schema-json/fdr_history_schema_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,7 @@
}
}
},
"minItems": 1,
"maxItems": 1000
"minItems": 1
}
}
}

0 comments on commit d8df31d

Please sign in to comment.