File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
daemon/internal/newrelic/integration Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -266,10 +266,9 @@ func (t *Test) MakeRun(ctx *Context) (Tx, error) {
266
266
// Make a copy of t.PhpModules and remove any entries containing "opcache.so"
267
267
// if opcache.so is loaded by default
268
268
//
269
- // three cases:
270
- // 1. C test - no opcache.so needed as PHP is not going to be run
271
- // 2. Web test and php-cgi has opcache.so loaded by default - remove any PHPMODULE spec for opcache.so
272
- // 3. PHP test and php has opcache.so loaded by default - remove any PHPMODULE spec for opcache.so
269
+ // two cases:
270
+ // 1. Web test and php-cgi has opcache.so loaded by default - remove any PHPMODULE spec for opcache.so
271
+ // 2. PHP test and php has opcache.so loaded by default - remove any PHPMODULE spec for opcache.so
273
272
phpModulesCopy := make (map [string ]string )
274
273
if (t .IsWeb () && ctx .OPCacheModuleLoaded [ctx .CGI ]) ||
275
274
(ctx .OPCacheModuleLoaded [ctx .PHP ]) {
You can’t perform that action at this time.
0 commit comments