Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/src/org/labkey/api/action/SpringActionController.java
Original file line number Diff line number Diff line change
Expand Up @@ -1280,7 +1280,7 @@ else if (SimpleRedirectAction.class.isAssignableFrom(actionClass) || SimpleViewA
return;

// Checking this late in the game to ensure OptionalFeatureService has been initialized.
if (OptionalFeatureService.get().isFeatureEnabled(ALLOW_MUTATING_SQL_VIA_GET))
if (!ModuleLoader.getInstance().isStartupComplete() || OptionalFeatureService.get().isFeatureEnabled(ALLOW_MUTATING_SQL_VIA_GET))
return;

// Note: This defers the mutating SQL parsing & detection until after the quick checks above
Expand Down