Lock_store lifetime max 30 sec?

Hi I got Deleted lock message ( looks like Max 30 sec lifetime)

local-rasa-know  | 2021-11-24 12:54:06 DEBUG    rasa.core.actions.action  - Calling action endpoint to run action 'call_haystack'.
local-rasa-know  | 2021-11-24 12:54:36 DEBUG    rasa.core.lock_store  - Deleted lock for conversation '5ifrqmsmwfrg5mhi5yhgr7cwah'

Since action_server call response is delayed more thatn 30 sec, is there anyway I can extend time?

You should not have actions running that long. This will cause other issues in Rasa. Instead, you should provide an initial response to the user that you are working on the issue and store the conversation id. When the call is complete, you would use an external event to send the response.

Thank you Stepens Found an asynch backend method to solve my issue. Alined with your suggestion.

Cheers