You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2018/08/28 22:58:15 UTC

[geode] branch concourse-staging updated (16496e9 -> debcd83)

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

upthewaterspout pushed a change to branch concourse-staging
in repository https://gitbox.apache.org/repos/asf/geode.git.


 discard 16496e9  Limit max number of simultaneous runs to 5.
     add 76af1dd  GEODE-5597 Publish geode artifacts to maven repo on GCS (#2347)
     add 48fe306  GEODE-5642 remove gradle task :cleanAll (#2385)
     add 3651a9a  GEODE-5646 Client throws ToDataException when locator is shutting down
     add 60ea939  GEODE-5618: Auth Attributes in FunctionService (#2360)
     add 58e4035  GEODE-5608 truncate fork/branch names in image/instance naming (#2363)
     add 366594c  Revert "GEODE-5608 truncate fork/branch names in image/instance naming (#2363)"
     add aa915c2  GEODE-5608 truncate fork/branch names in image/instance naming (#2390)
     add fd29e62  GEODE-5594: Enable endpoint identification during using SSL handshake. (#2346)
     add 926f35e  Feature/geode 5624 Use a single thread to ensure beforeCompletion and afterCompletion are executed by the same thread. (#2388)
     add 8382f8c  GEODE-5650: Improve ClusterStartupRule tear down (#2392)
     add b66beba  GEODE-5637: move SingleHopClientExecutorSubmitTaskWithExceptionTest to integrationTest
     add 7b6f5fa  GEODE-5633 pr pipeline name has fork and branch (#2391)
     add b3cf86b  GEODE-5604 Update gradle syntax to comply with 5.0 (#2350)
     add ebe44c2  GEODE-5641: add no-arg constructor to DiskDirRule
     new debcd83  Limit max number of simultaneous runs to 5.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (16496e9)
            \
             N -- N -- N   refs/heads/concourse-staging (debcd83)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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:
 build.gradle                                       |  16 +-
 buildSrc/build.gradle                              |  10 +-
 ci/images/google-geode-builder/build_image.sh      |   9 +-
 ci/pipelines/README.md                             |   2 +-
 ci/pipelines/clean_fork_pipelines.sh               |  18 +-
 ci/pipelines/deploy_meta.sh                        |  15 +-
 ci/pipelines/examples/deploy_pipeline.sh           |  22 +-
 ci/pipelines/geode-build/deploy_pipeline.sh        |  18 +-
 ci/pipelines/geode-build/jinja.template.yml        |  39 ++-
 ci/pipelines/images/deploy_images_pipeline.sh      |  10 +-
 ci/pipelines/meta.yml                              |   3 +
 ci/pipelines/pull-request/deploy_pr_pipeline.sh    |  26 +-
 ci/pipelines/render.py                             |  39 ++-
 ci/pipelines/shared/shared_jinja.yml               |   2 +-
 .../files/out => pipelines/shared/utilities.sh}    |  15 +-
 ci/scripts/publish.sh                              |  96 +++++++
 ci/scripts/start_instance.sh                       |  12 +-
 extensions/geode-modules-assembly/build.gradle     |  40 ++-
 .../geode-modules-session-internal/build.gradle    |   2 +-
 extensions/geode-modules-session/build.gradle      |   2 +-
 extensions/geode-modules-test/build.gradle         |   2 +-
 extensions/geode-modules-tomcat7/build.gradle      |   4 +-
 extensions/geode-modules-tomcat8/build.gradle      |   4 +-
 extensions/geode-modules/build.gradle              |   2 +-
 geode-assembly/build.gradle                        |  74 ++---
 geode-assembly/geode-assembly-test/build.gradle    |   2 +-
 .../integrationTest/resources/assembly_content.txt |   6 +
 geode-connectors/build.gradle                      |   2 +-
 geode-core/build.gradle                            |  21 +-
 ...tServerHostNameVerificationDistributedTest.java | 228 +++++++++++++++
 ...UserAuthenticationFunctionServiceDUnitTest.java | 183 ++++++++++++
 .../ClientServerJTAFailoverDistributedTest.java    |  37 ++-
 .../GfshHostNameVerificationDistributedTest.java   | 191 +++++++++++++
 .../AutoConnectionSourceImplJUnitTest.java         |  24 ++
 ...opClientExecutorWithLoggingIntegrationTest.java |  60 ++++
 .../tcpserver/TCPClientSSLIntegrationTest.java     | 175 ++++++++++++
 .../client/internal/AutoConnectionSourceImpl.java  |  16 +-
 .../geode/distributed/ConfigurationProperties.java |  11 +
 .../internal/AbstractDistributionConfig.java       |   4 +
 .../distributed/internal/DistributionConfig.java   |  28 ++
 .../internal/DistributionConfigImpl.java           |  13 +
 .../org/apache/geode/internal/admin/SSLConfig.java |  10 +
 .../geode/internal/cache/AfterCompletion.java      | 100 +++++++
 .../geode/internal/cache/BeforeCompletion.java     |  68 +++++
 .../internal/cache/SingleThreadJTAExecutor.java    |  71 +++++
 .../org/apache/geode/internal/cache/TXState.java   |  56 +++-
 .../cache/execute/ServerFunctionExecutor.java      |  43 +--
 .../execute/ServerRegionFunctionExecutor.java      |  42 +--
 .../internal/net/SSLConfigurationFactory.java      |   2 +
 .../apache/geode/internal/net/SocketCreator.java   |   7 +
 ...pClientExecutorSubmitTaskWithExceptionTest.java |  60 ----
 .../internal/DistributionConfigJUnitTest.java      |  23 +-
 .../geode/internal/cache/AfterCompletionTest.java  | 131 +++++++++
 .../geode/internal/cache/BeforeCompletionTest.java |  98 +++++++
 .../cache/SingleThreadJTAExecutorTest.java         |  66 +++++
 .../apache/geode/internal/cache/TXStateTest.java   |  50 ++--
 geode-cq/build.gradle                              |   1 +
 .../geode/test/dunit/rules/ClusterStartupRule.java |  44 +--
 .../test/dunit/rules/DistributedDiskDirRule.java   |  29 +-
 .../geode/test/junit/rules/ClientCacheRule.java    |   4 +
 .../apache/geode/test/junit/rules/DiskDirRule.java |  23 +-
 geode-junit/build.gradle                           |   4 +-
 .../org/apache/geode/cache/ssl/CertStores.java     | 145 ++++++++++
 .../org/apache/geode/cache/ssl/TestSSLUtils.java   | 195 +++++++++++++
 geode-lucene/build.gradle                          |  10 +-
 geode-old-client-support/build.gradle              |   2 +-
 geode-old-versions/build.gradle                    |   4 +-
 geode-protobuf/build.gradle                        |   7 +-
 geode-pulse/build.gradle                           |  14 +-
 .../WANHostNameVerificationDistributedTest.java    | 313 +++++++++++++++++++++
 geode-web-api/build.gradle                         |   3 +-
 geode-web/build.gradle                             |  10 +-
 gradle/dependency-versions.properties              |   1 +
 gradle/ide.gradle                                  |  16 +-
 gradle/java.gradle                                 |   8 +
 gradle/publish.gradle                              | 119 +++++++-
 gradle/sonar.gradle                                |   8 +-
 gradle/test.gradle                                 |  22 +-
 gradle/utilities.gradle                            |   3 +
 settings.gradle                                    |  29 +-
 80 files changed, 2905 insertions(+), 419 deletions(-)
 copy ci/{resource-types/concourse-metadata-resource/files/out => pipelines/shared/utilities.sh} (81%)
 mode change 100755 => 100644
 create mode 100755 ci/scripts/publish.sh
 create mode 100644 geode-core/src/distributedTest/java/org/apache/geode/cache/client/internal/ClientServerHostNameVerificationDistributedTest.java
 create mode 100644 geode-core/src/distributedTest/java/org/apache/geode/internal/cache/execute/MultiUserAuthenticationFunctionServiceDUnitTest.java
 create mode 100644 geode-core/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/GfshHostNameVerificationDistributedTest.java
 create mode 100644 geode-core/src/integrationTest/java/org/apache/geode/cache/client/internal/SingleHopClientExecutorWithLoggingIntegrationTest.java
 create mode 100644 geode-core/src/integrationTest/java/org/apache/geode/distributed/internal/tcpserver/TCPClientSSLIntegrationTest.java
 create mode 100644 geode-core/src/main/java/org/apache/geode/internal/cache/AfterCompletion.java
 create mode 100644 geode-core/src/main/java/org/apache/geode/internal/cache/BeforeCompletion.java
 create mode 100644 geode-core/src/main/java/org/apache/geode/internal/cache/SingleThreadJTAExecutor.java
 delete mode 100644 geode-core/src/test/java/org/apache/geode/cache/client/internal/SingleHopClientExecutorSubmitTaskWithExceptionTest.java
 create mode 100644 geode-core/src/test/java/org/apache/geode/internal/cache/AfterCompletionTest.java
 create mode 100644 geode-core/src/test/java/org/apache/geode/internal/cache/BeforeCompletionTest.java
 create mode 100644 geode-core/src/test/java/org/apache/geode/internal/cache/SingleThreadJTAExecutorTest.java
 create mode 100644 geode-junit/src/main/java/org/apache/geode/cache/ssl/CertStores.java
 create mode 100644 geode-junit/src/main/java/org/apache/geode/cache/ssl/TestSSLUtils.java
 create mode 100644 geode-wan/src/distributedTest/java/org/apache/geode/internal/cache/wan/serial/WANHostNameVerificationDistributedTest.java


[geode] 01/01: Limit max number of simultaneous runs to 5.

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

upthewaterspout pushed a commit to branch concourse-staging
in repository https://gitbox.apache.org/repos/asf/geode.git

commit debcd83e374104c9e37c410fcb59075d44f0c14a
Author: Mark Hanson <mh...@pivotal.io>
AuthorDate: Fri Jul 27 11:29:38 2018 -0700

    Limit max number of simultaneous runs to 5.
---
 ci/pipelines/geode-build/jinja.template.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ci/pipelines/geode-build/jinja.template.yml b/ci/pipelines/geode-build/jinja.template.yml
index c15fad0..749016a 100644
--- a/ci/pipelines/geode-build/jinja.template.yml
+++ b/ci/pipelines/geode-build/jinja.template.yml
@@ -235,6 +235,7 @@ jobs:
 {% for test in tests if not test.name=="StressNew" %}
 - name: {{test.name}}Test
   public: true
+  max_in_flight: 5
   plan:
   - do:
     {{ plan_resource_gets() |indent(4) }}