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.
2 parents c8fd00a + 391e28a commit 682f51eCopy full SHA for 682f51e
app/code/Magento/NewRelicReporting/Model/NewRelicWrapper.php
@@ -89,9 +89,6 @@ public function endTransaction($ignore = false)
89
*/
90
public function isExtensionInstalled()
91
{
92
- if (extension_loaded('newrelic')) {
93
- return true;
94
- }
95
- return false;
+ return extension_loaded('newrelic');
96
}
97
app/code/Magento/NewRelicReporting/etc/di.xml
@@ -50,6 +50,7 @@
50
<arguments>
51
<argument name="skipCommands" xsi:type="array">
52
<item xsi:type="boolean" name="cron:run">true</item>
53
+ <item xsi:type="boolean" name="server:run">true</item>
54
</argument>
55
</arguments>
56
</type>
0 commit comments