diff options
author | Anders Svensson <[email protected]> | 2014-05-27 09:45:54 +0200 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2014-05-27 09:52:21 +0200 |
commit | 631522514dbd409dbb789103b54bd81c879aff34 (patch) | |
tree | b03e4af06c11e4edbf96e667110d71b6e0d71c0a /lib/diameter/src/base/diameter_config.erl | |
parent | 2d5e6f4d438db1a480e44c539155e334c11851bc (diff) | |
download | otp-631522514dbd409dbb789103b54bd81c879aff34.tar.gz otp-631522514dbd409dbb789103b54bd81c879aff34.tar.bz2 otp-631522514dbd409dbb789103b54bd81c879aff34.zip |
Change answer_errors default from report to discard
In the same vein as commit 00584303, to avoid logging traffic-related
happenings.
Not that the value in diameter.hrl is just documentation: the value is
set explicitly when diameter:start_service/2 creates diameter_app
records.
Diffstat (limited to 'lib/diameter/src/base/diameter_config.erl')
-rw-r--r-- | lib/diameter/src/base/diameter_config.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/diameter/src/base/diameter_config.erl b/lib/diameter/src/base/diameter_config.erl index f5ea459fd0..dd1c9b73bb 100644 --- a/lib/diameter/src/base/diameter_config.erl +++ b/lib/diameter/src/base/diameter_config.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2010-2013. All Rights Reserved. +%% Copyright Ericsson AB 2010-2014. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -753,7 +753,7 @@ app_acc({application, Opts} = T, Acc) -> Alias = get_opt(alias, Opts, Dict), ModS = get_opt(state, Opts, Alias), M = get_opt(call_mutates_state, Opts, false, [true]), - A = get_opt(answer_errors, Opts, report, [callback, discard]), + A = get_opt(answer_errors, Opts, discard, [callback, report]), P = get_opt(request_errors, Opts, answer_3xxx, [answer, callback]), [#diameter_app{alias = Alias, dictionary = Dict, |