Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PAGOPA-2156] fix: tuning of RPT_TIMEOUT after received feedbacks #114

Merged
merged 2 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions helm/values-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ microservice-chart:
servicePort: 8080
serviceAccount:
create: false
annotations: {}
annotations: { }
name: ""
podAnnotations: {}
podAnnotations: { }
podSecurityContext:
seccompProfile:
type: RuntimeDefault
Expand Down Expand Up @@ -98,7 +98,7 @@ microservice-chart:
RT_SEND_SCHEDULING_TIME_IN_MINUTES: '1'
RT_SEND_AVOID_SCHEDULING_ON_STATES: 'PAA_RT_DUPLICATA'
RPT_TIMER_QUEUE_NAME: "nodo_wisp_rpt_timeout_queue"
RPT_TIMEOUT: '1800'
RPT_TIMEOUT: '120' # 2 minutes
RE_TRACING_INTERFACE_IUVGENERATOR_ENABLED: 'true'
RE_TRACING_INTERFACE_PAYMENTPOSITIONANALYSIS_ENABLED: 'true'
RE_TRACING_INTERFACE_DECOUPLERCACHING_ENABLED: 'true'
Expand Down Expand Up @@ -134,8 +134,8 @@ microservice-chart:
tenantId: "7788edaf-0346-4068-9d79-c868aed15b3d"
tmpVolumeMount:
create: true
nodeSelector: {}
tolerations: []
nodeSelector: { }
tolerations: [ ]
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
Expand All @@ -162,5 +162,5 @@ microservice-chart:
repository: ghcr.io/pagopa/pagopa-wisp-converter
tag: "0.0.0"
pullPolicy: Always
envConfig: {}
envSecret: {}
envConfig: { }
envSecret: { }
14 changes: 7 additions & 7 deletions helm/values-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ microservice-chart:
servicePort: 8080
serviceAccount:
create: false
annotations: {}
annotations: { }
name: ""
podAnnotations: {}
podAnnotations: { }
podSecurityContext:
seccompProfile:
type: RuntimeDefault
Expand Down Expand Up @@ -117,7 +117,7 @@ microservice-chart:
RT_SEND_SCHEDULING_TIME_IN_MINUTES: '60'
RT_SEND_AVOID_SCHEDULING_ON_STATES: 'PAA_RT_DUPLICATA'
RPT_TIMER_QUEUE_NAME: "nodo_wisp_rpt_timeout_queue"
RPT_TIMEOUT: '1800'
RPT_TIMEOUT: '300' # 5 minutes
RE_TRACING_INTERFACE_IUVGENERATOR_ENABLED: 'true'
RE_TRACING_INTERFACE_PAYMENTPOSITIONANALYSIS_ENABLED: 'true'
RE_TRACING_INTERFACE_DECOUPLERCACHING_ENABLED: 'true'
Expand Down Expand Up @@ -153,8 +153,8 @@ microservice-chart:
tenantId: "7788edaf-0346-4068-9d79-c868aed15b3d"
tmpVolumeMount:
create: true
nodeSelector: {}
tolerations: []
nodeSelector: { }
tolerations: [ ]
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
Expand All @@ -181,5 +181,5 @@ microservice-chart:
repository: ghcr.io/pagopa/pagopa-wisp-converter
tag: "0.0.0"
pullPolicy: Always
envConfig: {}
envSecret: {}
envConfig: { }
envSecret: { }
14 changes: 7 additions & 7 deletions helm/values-uat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ microservice-chart:
servicePort: 8080
serviceAccount:
create: false
annotations: {}
annotations: { }
name: ""
podAnnotations: {}
podAnnotations: { }
podSecurityContext:
seccompProfile:
type: RuntimeDefault
Expand Down Expand Up @@ -98,7 +98,7 @@ microservice-chart:
RT_SEND_SCHEDULING_TIME_IN_MINUTES: '60'
RT_SEND_AVOID_SCHEDULING_ON_STATES: 'PAA_RT_DUPLICATA'
RPT_TIMER_QUEUE_NAME: "nodo_wisp_rpt_timeout_queue"
RPT_TIMEOUT: '1800'
RPT_TIMEOUT: '60' # 1 minute (set for integration tests)
RE_TRACING_INTERFACE_IUVGENERATOR_ENABLED: 'true'
RE_TRACING_INTERFACE_PAYMENTPOSITIONANALYSIS_ENABLED: 'true'
RE_TRACING_INTERFACE_DECOUPLERCACHING_ENABLED: 'true'
Expand Down Expand Up @@ -134,8 +134,8 @@ microservice-chart:
tenantId: "7788edaf-0346-4068-9d79-c868aed15b3d"
tmpVolumeMount:
create: true
nodeSelector: {}
tolerations: []
nodeSelector: { }
tolerations: [ ]
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
Expand All @@ -162,5 +162,5 @@ microservice-chart:
repository: ghcr.io/pagopa/pagopa-wisp-converter
tag: "0.0.0"
pullPolicy: Always
envConfig: {}
envSecret: {}
envConfig: { }
envSecret: { }
Loading