How to fix Mendix automatically unblocking users that are blocked by scheduled event microflow

0
I created a microflow that is triggered with a scheduled event. The event itself correctly triggers and executes the microflow. This microflow blocks users based on some conditions. The issue here is that sooner or later, Mendix automatically unblocks them. The microflow does not contain anything that unblocks them. I also searched app-wide, and I cannot find any microflow that performs the unblocking and the logs show only Mendix Core as the log node with no stack trace.     How to fix this so that Mendix no longer automatically unblocks users?
asked
1 answers
1

The 5 minutes are defined by the runtime setting ClusterManagerActionInterval, but I wouldn't mess with that. The whole block-unblock thing is meant for users who use wrong credentials to log in. You don't want people to be able to brute force a login. It looks like you may want to set users (permanently) InActive in your scheduled event instead of (temporarily) Blocked.

answered