diff options
author | Michael Hwang <mhwang@research.att.com> | 2017-10-27 14:05:07 -0400 |
---|---|---|
committer | Michael Hwang <mhwang@research.att.com> | 2017-10-27 14:25:06 -0400 |
commit | db1a18820fa4ab7bdc99b6f0ab5a07216835c3d3 (patch) | |
tree | 10f3c7c436b747cce930abc198075c59208cc640 /src/sch | |
parent | 5e312fba79c7aeaba2b433fe19dae7b0ced20cfb (diff) |
Fix setting of useHttpsWithDmaap config
Change-Id: I91c6a0fe72c66fca3a740206753f9bcff10825a3
Issue-Id: DCAEGEN2-183
Signed-off-by: Michael Hwang <mhwang@research.att.com>
Diffstat (limited to 'src/sch')
-rw-r--r-- | src/sch/core.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sch/core.clj b/src/sch/core.clj index a5e1998..d83d266 100644 --- a/src/sch/core.clj +++ b/src/sch/core.clj @@ -110,7 +110,7 @@ (getKeyStorePassword [] (str (:keyStorePassword config-asdc))) (activateServerTLSAuth [] (boolean (:activateServerTLSAuth config-asdc))) (isFilterInEmptyResources [] (boolean (:isFilterInEmptyResources config-asdc))) - (isUseHttpsWithDmaap [] (contains? config-asdc :useHttpsWithDmaap) (Boolean/valueOf(str (:useHttpsWithDmaap config-asdc))) true) + (isUseHttpsWithDmaap [] (boolean (:useHttpsWithDmaap config-asdc false))) ))) (defn run-distribution-client! |