diff options
author | Anders Svensson <[email protected]> | 2013-06-11 12:19:55 +0200 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2013-06-11 12:19:55 +0200 |
commit | 69694acdab4391ef3a10c1e9d8130a1cf39beb4a (patch) | |
tree | afa5e56adaa9e0437470d45e3966b48237997102 /lib/diameter/test | |
parent | c80d324e1eeb34129e63e10b00cff688988b0296 (diff) | |
parent | 78b3dc6eea23a728a20947ccc425a7860ef39d97 (diff) | |
download | otp-69694acdab4391ef3a10c1e9d8130a1cf39beb4a.tar.gz otp-69694acdab4391ef3a10c1e9d8130a1cf39beb4a.tar.bz2 otp-69694acdab4391ef3a10c1e9d8130a1cf39beb4a.zip |
Merge branch 'anders/diameter/request_spawn/OTP-11060' into maint
* anders/diameter/request_spawn/OTP-11060:
Make spawn options for request processes configurable
Diffstat (limited to 'lib/diameter/test')
-rw-r--r-- | lib/diameter/test/diameter_traffic_SUITE.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/diameter/test/diameter_traffic_SUITE.erl b/lib/diameter/test/diameter_traffic_SUITE.erl index 38bdf55af8..a97c54fc04 100644 --- a/lib/diameter/test/diameter_traffic_SUITE.erl +++ b/lib/diameter/test/diameter_traffic_SUITE.erl @@ -171,7 +171,8 @@ {'Product-Name', "OTP/diameter"}, {'Auth-Application-Id', [?DIAMETER_APP_ID_COMMON]}, {'Acct-Application-Id', [?DIAMETER_APP_ID_ACCOUNTING]}, - {restrict_connections, false} + {restrict_connections, false}, + {spawn_opt, [{min_heap_size, 5000}]} | [{application, [{dictionary, D}, {module, ?MODULE}, {answer_errors, callback}]} @@ -321,6 +322,7 @@ add_transports(Config) -> LRef = ?util:listen(?SERVER, tcp, [{capabilities_cb, fun capx/2}, + {spawn_opt, [{min_heap_size, 8096}]}, {applications, apps(rfc3588)}]), Cs = [?util:connect(?CLIENT, tcp, |