Skip to content

Commit a92eaef

Browse files
authored
Update config_reference.md
1 parent 478226d commit a92eaef

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

docs/bundle/config_reference.md

+16-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@
33
You can get this info by running `./bin/console config:dump-reference enqueue` command.
44

55
```yaml
6+
# Default configuration for extension with alias: "enqueue"
67
enqueue:
78
transport: # Required
89
default:
9-
alias: ~ # Required
10-
null: []
10+
alias: ~
11+
dsn: ~
12+
null:
13+
dsn: ~
1114
stomp:
1215
host: localhost
1316
port: 61613
@@ -37,6 +40,9 @@ enqueue:
3740
delay_plugin_installed: false
3841
amqp:
3942

43+
# The connection to AMQP broker set as a string. Other parameters are ignored if set
44+
dsn: ~
45+
4046
# The host to connect too. Note: Max 1024 characters
4147
host: localhost
4248

@@ -64,6 +70,9 @@ enqueue:
6470
lazy: true
6571
rabbitmq_amqp:
6672

73+
# The connection to AMQP broker set as a string. Other parameters are ignored if set
74+
dsn: ~
75+
6776
# The host to connect too. Note: Max 1024 characters
6877
host: localhost
6978

@@ -94,8 +103,11 @@ enqueue:
94103
delay_plugin_installed: false
95104
fs:
96105

106+
# The path to a directory where to store messages given as DSN. For example file://tmp/foo
107+
dsn: ~
108+
97109
# The store directory where all queue\topics files will be created and messages are stored
98-
path: ~ # Required
110+
path: ~
99111

100112
# The option tells how many messages should be read from file at once. The feature save resources but could lead to bigger messages lose.
101113
pre_fetch_count: 1
@@ -156,4 +168,4 @@ enqueue:
156168
signal_extension: true
157169
```
158170
159-
[back to index](../index.md)
171+
[back to index](../index.md)

0 commit comments

Comments
 (0)