diff options
author | Evgeniy Khramtsov <ekhramtsov@process-one.net> | 2018-05-07 22:43:01 +0300 |
---|---|---|
committer | Evgeniy Khramtsov <ekhramtsov@process-one.net> | 2018-05-07 22:43:01 +0300 |
commit | 5522403e8efbe65d83585b7c3abee0aa4722b8d3 (patch) | |
tree | 514187a9740dcce0030138fda53c1d64c77f8a4a /src | |
parent | Improve robustness of external authentication backends (diff) |
Don't stop on out-of-date requests
Diffstat (limited to 'src')
-rw-r--r-- | src/extauth.erl | 2 |
1 files changed, 1 insertions, 1 deletions
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) -> |