You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/09/28 12:26:44 UTC

[camel] branch master updated (1abe99b -> 484988c)

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 1abe99b  Missing a '-' in the Keepalive option of gh action
     new ffb307b  Implement the connection timeout work-around suggested to avoid connection timeout in gh action for master-pr-build.yml
     new 484988c  Implement the connection timeout work-around suggested to avoid connection timeout in gh action for master-push-build.yml

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/master-pr-build.yml   | 4 ++--
 .github/workflows/master-push-build.yml | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)


[camel] 01/02: Implement the connection timeout work-around suggested to avoid connection timeout in gh action for master-pr-build.yml

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit ffb307b407c157c969ddc7eea6aafc354d9c0656
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Sep 28 14:23:12 2020 +0200

    Implement the connection timeout work-around suggested to avoid connection timeout in gh action for master-pr-build.yml
---
 .github/workflows/master-pr-build.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/master-pr-build.yml b/.github/workflows/master-pr-build.yml
index e498d16..6e13cd1 100644
--- a/.github/workflows/master-pr-build.yml
+++ b/.github/workflows/master-pr-build.yml
@@ -40,7 +40,7 @@ jobs:
         key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
         restore-keys: ${{ runner.os }}-m2
     - name: mvn sourcecheck
-      run: ./mvnw -V --no-transfer-progress -Psourcecheck -Dcheckstyle.failOnViolation=true -DskipTests checkstyle:checkstyle verify
+      run: ./mvnw -V -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 --no-transfer-progress -Psourcecheck -Dcheckstyle.failOnViolation=true -DskipTests checkstyle:checkstyle verify
     - name: Check if there are uncommited changes
       id: changes
       uses: bedlaj/has-changes-action@camel
@@ -49,4 +49,4 @@ jobs:
       run: |
         echo "Maven build will override some files, which are not commited as part of this PR. Please run maven build and commit generated sources."
         echo "${{ steps.changes.outputs.changes }}"
-        exit 1
\ No newline at end of file
+        exit 1


[camel] 02/02: Implement the connection timeout work-around suggested to avoid connection timeout in gh action for master-push-build.yml

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 484988cd9dd429c08cc43f052eebc62cf1bd79aa
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Sep 28 14:26:12 2020 +0200

    Implement the connection timeout work-around suggested to avoid connection timeout in gh action for master-push-build.yml
---
 .github/workflows/master-push-build.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/master-push-build.yml b/.github/workflows/master-push-build.yml
index d1156b8..dff1447 100644
--- a/.github/workflows/master-push-build.yml
+++ b/.github/workflows/master-push-build.yml
@@ -40,7 +40,7 @@ jobs:
           key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
           restore-keys: ${{ runner.os }}-m2
       - name: mvn sourcecheck
-        run: ./mvnw -V --no-transfer-progress -Psourcecheck -Dcheckstyle.failOnViolation=true -DskipTests checkstyle:checkstyle verify
+        run: ./mvnw -V -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 --no-transfer-progress -Psourcecheck -Dcheckstyle.failOnViolation=true -DskipTests checkstyle:checkstyle verify
       - name: Create Pull Request
         uses: peter-evans/create-pull-request@v3
         with:
@@ -57,4 +57,4 @@ jobs:
           labels: |
             regen
             automated pr
-          assignees: oscerd
\ No newline at end of file
+          assignees: oscerd