ISM Set policy action hang for days

I tried to apply a new policy on 1000 indices, half complete successfully and the other half are still running in the transition or the priority task I set in the policy. Is there a way to manage/kill those action once it’s started?

I’ve try reapply the policy but I got an error that the indice is still in transition or set priority task and fail instantly.

I’m currently on version 1.10.1

Here is the policy I applied :

{
    "policy": {
        "policy_id": "Move Hot to warm data after 1 week",
        "description": "A Policy to move indices to slower storage after 7 days",
        "last_updated_time": 1602881166454,
        "schema_version": 1,
        "error_notification": null,
        "default_state": "hot",
        "states": [
            {
                "name": "hot",
                "actions": [
                    {
                        "index_priority": {
                            "priority": 100
                        }
                    }
                ],
                "transitions": [
                    {
                        "state_name": "warm",
                        "conditions": {
                            "min_index_age": "7d"
                        }
                    }
                ]
            },
            {
                "name": "warm",
                "actions": [
                    {
                        "allocation": {
                            "require": {
                                "temp": "warm"
                            },
                            "wait_for": false
                        }
                    }
                ],
                "transitions": []
            }
        ]
    }
}