summaryrefslogtreecommitdiff |
diff options
author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2018-03-04 09:22:28 +0100 |
---|---|---|
committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2018-03-04 09:22:28 +0100 |
commit | 10b1058e56079232728e3fc959709bc784e58b5b (patch) | |
tree | a00cd681e8e6b9fc11a286958d9fc1b56ec454d9 /src/io | |
parent | 99fcad8cbe31ba23d9c079b62e8a174c5b3ddf1b (diff) |
Fixes missing cache timeout, tix being binary.
Diffstat (limited to 'src/io')
-rw-r--r-- | src/io/timed_cache.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/io/timed_cache.erl b/src/io/timed_cache.erl index 4c82ee8..52b98d6 100644 --- a/src/io/timed_cache.erl +++ b/src/io/timed_cache.erl @@ -53,7 +53,8 @@ add_update_to_cache (DB, Owner, ObjectID, Data) -> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%% 'gen_server' functions init ({DB, ObjectID}) -> - {ok, {DB, ObjectID}}. + io:format("~nCache entry added: ~p.~n", [{DB, ObjectID}]), + {ok, {DB, ObjectID}, timed_caches_manager:get_timeout()}. handle_call (invalidate, _, State) -> {stop, normal, State}; |