Bug: processEvergreen() imports wrong plugin group #93
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Audit Finding L-3
Severity: Low
Issue:
QueueProcessor::processEvergreen()callsPluginHelper::importPlugin('system')instead ofPluginHelper::importPlugin('mokojoomcross'). There's also a dead$systemPlugin = null;variable.Impact: The plugin collection in processEvergreen is unused (it just creates queue entries), so this doesn't cause failures, but it's dead/wrong code.
Fix: Change to
importPlugin('mokojoomcross')and remove the dead variable.Files:
QueueProcessor.phpLabel:
priority: low,type: bugBranch created:
feature/93-bug-processevergreen-imports-wrong-plugi