We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eda09a9 commit 60c3651Copy full SHA for 60c3651
app/server/appsmith-server/src/main/java/com/appsmith/server/helpers/RedisUtils.java
@@ -100,6 +100,11 @@ public Mono<String> getRunningAutoCommitBranchName(String defaultApplicationId)
100
});
101
}
102
103
+ /**
104
+ * Expect to use this method when you want to delete all the sessions in this Appsmith instance.
105
+ * This would be required for whenever any attribute related to sessions becomes invalid at a systemic level.
106
+ * Use with caution, every user will be logged out.
107
+ */
108
public Mono<Void> deleteAllSessionsIncludingCurrentUser() {
109
AtomicInteger deletedKeysCount = new AtomicInteger(0);
110
0 commit comments