Skip to content

Commit

Permalink
Merge pull request #18 from pagopa/fix-queue-visibility
Browse files Browse the repository at this point in the history
fix(host.json): Update QueueTrigger visibility timeout
  • Loading branch information
cap-ang authored May 16, 2024
2 parents 37954b4 + 9449c91 commit 2652e69
Show file tree
Hide file tree
Showing 6 changed files with 12 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-gpd-upload-function
description: Microservice description
type: application
version: 0.88.0
appVersion: 0.0.14
version: 0.89.0
appVersion: 0.0.14-1-fix-queue-visibility
dependencies:
- name: microservice-chart
version: 2.4.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-gpd-upload-function
tag: "0.0.14"
tag: "0.0.14-1-fix-queue-visibility"
pullPolicy: Always
# https://github.com/Azure/azure-functions-host/blob/dev/src/WebJobs.Script.WebHost/Controllers/HostController.cs
livenessProbe:
Expand Down
2 changes: 1 addition & 1 deletion helm/values-prod.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-gpd-upload-function
tag: "0.0.14"
tag: "0.0.14-1-fix-queue-visibility"
pullPolicy: Always
# https://github.com/Azure/azure-functions-host/blob/dev/src/WebJobs.Script.WebHost/Controllers/HostController.cs
livenessProbe:
Expand Down
2 changes: 1 addition & 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-gpd-upload-function
tag: "0.0.14"
tag: "0.0.14-1-fix-queue-visibility"
pullPolicy: Always
# https://github.com/Azure/azure-functions-host/blob/dev/src/WebJobs.Script.WebHost/Controllers/HostController.cs
livenessProbe:
Expand Down
10 changes: 6 additions & 4 deletions host.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,20 @@
},
"queues": {
"maxPollingInterval": "00:01:00",
"visibilityTimeout" : "00:00:00",
"visibilityTimeout" : "00:02:00",
"batchSize": 16,
"maxDequeueCount": 5,
"newBatchThreshold": 8
}
},
"logging": {
"fileLoggingMode": "always",
"fileLoggingMode": "debugOnly",
"logLevel": {
"default": "Error",
"default": "None",
"Host.Results": "Error",
"Function": "Information",
"Function": "Error",
"Microsoft": "Information",
"Worker": "Information",
"Host.Aggregator": "Error",
"Host": "Error"
},
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>it.gov.pagopa.gpd.upload</groupId>
<artifactId>gpd-upload-function</artifactId>
<version>0.0.14</version>
<version>0.0.14-1-fix-queue-visibility</version>
<packaging>jar</packaging>

<name>GPD-Upload-Function</name>
Expand Down

0 comments on commit 2652e69

Please sign in to comment.