You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@slider.apache.org by st...@apache.org on 2018/02/14 18:50:06 UTC

incubator-slider git commit: slacken check in response from OpenSSL to *SSL; we care about presence of the artifact, not the specific version

Repository: incubator-slider
Updated Branches:
  refs/heads/develop b2f652c2a -> 68b96b708


slacken check in response from OpenSSL to *SSL; we care about presence of the artifact, not the specific version


Project: http://git-wip-us.apache.org/repos/asf/incubator-slider/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-slider/commit/68b96b70
Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/68b96b70
Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/68b96b70

Branch: refs/heads/develop
Commit: 68b96b70864262a2f28ef1adb9fd15e456a3e399
Parents: b2f652c
Author: Steve Loughran <st...@apache.org>
Authored: Wed Feb 14 17:46:27 2018 +0000
Committer: Steve Loughran <st...@apache.org>
Committed: Wed Feb 14 17:46:27 2018 +0000

----------------------------------------------------------------------
 .../src/main/java/org/apache/slider/common/tools/SliderUtils.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/68b96b70/slider-core/src/main/java/org/apache/slider/common/tools/SliderUtils.java
----------------------------------------------------------------------
diff --git a/slider-core/src/main/java/org/apache/slider/common/tools/SliderUtils.java b/slider-core/src/main/java/org/apache/slider/common/tools/SliderUtils.java
index 0b23197..8fdf77f 100644
--- a/slider-core/src/main/java/org/apache/slider/common/tools/SliderUtils.java
+++ b/slider-core/src/main/java/org/apache/slider/common/tools/SliderUtils.java
@@ -2397,7 +2397,7 @@ public final class SliderUtils {
   public static void validateOpenSSLEnv(Logger logger) throws
       IOException,
       SliderException {
-    execCommand(OPENSSL, 0, 5000, logger, "OpenSSL", OPENSSL, "version");
+    execCommand(OPENSSL, 0, 5000, logger, "SSL", OPENSSL, "version");
   }
 
   public static void validatePythonEnv(Logger logger) throws