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 861e99e commit 3514a94Copy full SHA for 3514a94
app/code/Magento/Cron/Observer/ProcessCronQueueObserver.php
@@ -148,7 +148,9 @@ public function execute(\Magento\Framework\Event\Observer $observer)
148
$jobGroupsRoot = $this->_config->getJobs();
149
150
foreach ($jobGroupsRoot as $groupId => $jobsRoot) {
151
- if ($this->_request->getParam('group') !== null && $this->_request->getParam('group') != $groupId) {
+ if ($this->_request->getParam('group') !== null
152
+ && $this->_request->getParam('group') !== escapeshellarg($groupId)
153
+ && $this->_request->getParam('group') !== $groupId) {
154
continue;
155
}
156
if (($this->_request->getParam(self::STANDALONE_PROCESS_STARTED) !== '1') && (
0 commit comments