diff options
| author | Magnus Ahltorp <map@kth.se> | 2015-03-04 22:48:40 +0100 |
|---|---|---|
| committer | Magnus Ahltorp <map@kth.se> | 2015-03-04 22:48:40 +0100 |
| commit | a706e79fa722f681320fe1b05824352b6b9a63fc (patch) | |
| tree | 41907841f09f19d93adfab91eb314bb0789851f9 /src/catlfish_app.erl | |
| parent | f800e5fae8f9579328477b3bc3e939d9f4369d32 (diff) | |
| parent | e0f11a58033d52c70bc76b4b5611cb88485d4653 (diff) | |
Merge branch 'extsign'
Diffstat (limited to 'src/catlfish_app.erl')
| -rw-r--r-- | src/catlfish_app.erl | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/catlfish_app.erl b/src/catlfish_app.erl index e24a1bb..56f6cc2 100644 --- a/src/catlfish_app.erl +++ b/src/catlfish_app.erl @@ -8,20 +8,12 @@ %% Application callbacks -export([start/2, stop/1]). --include("catlfish.hrl"). - %% =================================================================== %% Application callbacks %% =================================================================== start(normal, Args) -> - case ets:info(?CACHE_TABLE) of - undefined -> - ok; - _ -> - ets:delete(?CACHE_TABLE) - end, - ets:new(?CACHE_TABLE, [set, public, named_table]), + catlfish:init_cache_table(), catlfish_sup:start_link(Args). stop(_State) -> |
