From 5522403e8efbe65d83585b7c3abee0aa4722b8d3 Mon Sep 17 00:00:00 2001 From: Evgeniy Khramtsov Date: Mon, 7 May 2018 22:43:01 +0300 Subject: [PATCH] Don't stop on out-of-date requests --- src/extauth.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extauth.erl b/src/extauth.erl index 9c360bff2..b9d472408 100644 --- a/src/extauth.erl +++ b/src/extauth.erl @@ -131,7 +131,7 @@ handle_call({cmd, Cmd, EndTime}, _From, State) -> {stop, extauth_program_timeout, State} end; true -> - {stop, extauth_program_timeout, State} + {noreply, State} end. handle_cast(_Msg, State) ->