diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/solutions/ce/ActionExecutionSolutionCEImpl.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/solutions/ce/ActionExecutionSolutionCEImpl.java index c8db695056cf..38c8664141d0 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/solutions/ce/ActionExecutionSolutionCEImpl.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/solutions/ce/ActionExecutionSolutionCEImpl.java @@ -265,15 +265,6 @@ private Mono populateExecuteActionDTO(ExecuteActionDTO execute })); } - /** - * Populates the requestParams with logged in userId. - * If the user is not logged in, set the parameter as anonymousUserId - * - */ - protected Mono populateExecuteActionDTOWithUserId(ExecuteActionDTO executeActionDTO) { - return Mono.just(executeActionDTO); - } - /** * Executes the action(queries) by creating executeActionDTO and sending it to the plugin for further execution * diff --git a/app/server/appsmith-server/src/test/java/com/appsmith/server/solutions/ce/ActionExecutionSolutionCEImplTest.java b/app/server/appsmith-server/src/test/java/com/appsmith/server/solutions/ce/ActionExecutionSolutionCEImplTest.java index c6c1eb95610a..603142af9435 100644 --- a/app/server/appsmith-server/src/test/java/com/appsmith/server/solutions/ce/ActionExecutionSolutionCEImplTest.java +++ b/app/server/appsmith-server/src/test/java/com/appsmith/server/solutions/ce/ActionExecutionSolutionCEImplTest.java @@ -109,7 +109,7 @@ class ActionExecutionSolutionCEImplTest { @MockBean ApplicationService applicationService; - @MockBean + @SpyBean SessionUserService sessionUserService; @MockBean