diff options
author | José Bollo <jose.bollo@iot.bzh> | 2018-02-15 16:54:47 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2018-02-15 17:31:29 +0100 |
commit | a89c56b7c252cc1bd5f92cebbdb274cc4ae2893f (patch) | |
tree | a69faea6e7f2ea9a841af4da8768e09767b03d0b | |
parent | 350ee3c6323d2f939a6416d38ec3154b370ce5a5 (diff) |
The management of sessions is not very well understood
actually. People are using it without refreshing the token.
This has the effect that the binder closes sessions
after one hour.
So no demo can run more than one hour!
Increasing the timeout to more than one year will
solve the demo problem but will not fully solve the
overall problem.
Bug-AGL: SPEC-1296
Bug-AGL: SPEC-1293
Change-Id: I502a45e3c94f0c4633a80b68619a6e608ad36e7a
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
-rw-r--r-- | src/afb-config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afb-config.c b/src/afb-config.c index f4aed055..b5ce52c5 100644 --- a/src/afb-config.c +++ b/src/afb-config.c @@ -38,8 +38,8 @@ #endif // default -#define DEFLT_CNTX_TIMEOUT 3600 // default Client Connection - // Timeout +#define DEFLT_CNTX_TIMEOUT 32000000 // default Client Connection + // Timeout: few more than one year #define DEFLT_API_TIMEOUT 20 // default Plugin API Timeout [0=NoLimit // for Debug Only] #define DEFLT_CACHE_TIMEOUT 100000 // default Static File Chache |