File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
common/scala/src/main/scala/org/apache/openwhisk/core/entity Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 4949 version:
5050 date: "{{ansible_date_time.iso8601}}"
5151 feature_flags:
52- require_api_key_annotation: "{{ require_api_key_annotation | default(true) }}"
52+ require_api_key_annotation: "{{ require_api_key_annotation | default(true) | lower }}"
5353
5454##
5555# configuration parameters related to support runtimes (see org.apache.openwhisk.core.entity.ExecManifest for schema of the manifest).
@@ -388,4 +388,4 @@ metrics:
388388 host: "{{ metrics_kamon_statsd_host | default('') }}"
389389 port: "{{ metrics_kamon_statsd_port | default('8125') }}"
390390
391- user_events: "{{ user_events_enabled | default(false) }}"
391+ user_events: "{{ user_events_enabled | default(false) | lower }}"
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ import org.apache.openwhisk.core.ConfigKeys
2727import pureconfig .loadConfig
2828import spray .json .DefaultJsonProtocol ._
2929import spray .json .{JsNull , JsString }
30+ import pureconfig .generic .auto ._
3031
3132private trait encrypter {
3233 def encrypt (p : ParameterValue ): ParameterValue
Original file line number Diff line number Diff line change @@ -92,6 +92,10 @@ whisk {
9292 url = "{{ user_images_registry | default('') }}"
9393 }
9494 }
95+
96+ parameter-storage {
97+ key = ""
98+ }
9599}
96100
97101#test-only overrides so that tests can override defaults in application.conf (todo: move all defaults to reference.conf)
You can’t perform that action at this time.
0 commit comments