We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65fafd2 commit a5d4300Copy full SHA for a5d4300
app/code/Magento/MessageQueue/Setup/ConfigOptionsList.php
@@ -31,8 +31,13 @@ class ConfigOptionsList implements ConfigOptionsListInterface
31
/**
32
* Default value
33
*/
34
- const DEFULT_CONSUMERS_WAIT_FOR_MESSAGES = 1;
+ const DEFAULT_CONSUMERS_WAIT_FOR_MESSAGES = 1;
35
36
+ /**
37
+ * The available configuration values
38
+ *
39
+ * @var array
40
+ */
41
private $selectOptions = [0, 1];
42
43
@@ -47,7 +52,7 @@ public function getOptions()
47
52
$this->selectOptions,
48
53
self::CONFIG_PATH_QUEUE_CONSUMERS_WAIT_FOR_MESSAGES,
49
54
'Should consumers wait for a message from the queue? 1 - Yes, 0 - No',
50
- self::DEFULT_CONSUMERS_WAIT_FOR_MESSAGES
55
+ self::DEFAULT_CONSUMERS_WAIT_FOR_MESSAGES
51
56
),
57
];
58
}
0 commit comments