File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 2
2
This changelog references the relevant changes done in 1.x versions.
3
3
4
4
5
+ ## v1.0.1
6
+ * Enable ssl config by default for ` gdbots_ncr.ncr_search.elastica.client_manager ` config.
7
+
8
+
5
9
## v1.0.0
6
10
* Initial stable version.
Original file line number Diff line number Diff line change @@ -185,6 +185,9 @@ protected function getElasticaNcrSearchConfigTree(): NodeDefinition
185
185
'debug ' => false ,
186
186
'persistent ' => true ,
187
187
'servers ' => $ defaultServers ,
188
+ 'config ' => [
189
+ 'ssl ' => true ,
190
+ ]
188
191
],
189
192
];
190
193
@@ -294,6 +297,15 @@ protected function getElasticaNcrSearchConfigTree(): NodeDefinition
294
297
->end ()
295
298
->end ()
296
299
->end ()
300
+ ->arrayNode ('config ' )
301
+ ->addDefaultsIfNotSet ()
302
+ ->children ()
303
+ ->booleanNode ('ssl ' )
304
+ ->defaultTrue ()
305
+ ->treatNullLike (true )
306
+ ->end ()
307
+ ->end ()
308
+ ->end ()
297
309
->end ()
298
310
->end ()
299
311
->end ()
You can’t perform that action at this time.
0 commit comments