Skip to content

Commit f9cc82e

Browse files
committed
Add options transport, user and password for Elasticsearch handler.
1 parent 68aa0d5 commit f9cc82e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

DependencyInjection/Configuration.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,9 @@ public function getConfigTreeBuilder()
409409
->scalarNode('id')->end()
410410
->scalarNode('host')->end()
411411
->scalarNode('port')->defaultValue(9200)->end()
412+
->scalarNode('transport')->defaultValue('http')->end()
413+
->scalarNode('user')->defaultNull()->end()
414+
->scalarNode('password')->defaultNull()->end()
412415
->end()
413416
->validate()
414417
->ifTrue(function ($v) {

0 commit comments

Comments
 (0)