You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by kx...@apache.org on 2015/09/23 14:29:40 UTC

[46/50] rebar commit: updated refs/heads/import to 5dea85d

rmemo: properly handle unsupported call


Project: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/commit/e3a2917a
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/tree/e3a2917a
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/diff/e3a2917a

Branch: refs/heads/import
Commit: e3a2917afc13d220a0d0a3daca40f0693c6cc94d
Parents: 0262332
Author: Tuncer Ayaz <tu...@gmail.com>
Authored: Fri Jun 19 16:38:36 2015 +0200
Committer: Tuncer Ayaz <tu...@gmail.com>
Committed: Fri Jun 19 16:38:36 2015 +0200

----------------------------------------------------------------------
 src/rmemo.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-rebar/blob/e3a2917a/src/rmemo.erl
----------------------------------------------------------------------
diff --git a/src/rmemo.erl b/src/rmemo.erl
index 54a8626..dd3642f 100644
--- a/src/rmemo.erl
+++ b/src/rmemo.erl
@@ -216,7 +216,7 @@ ets_tab() ->
 handle_call({save, Key, Res}, _From, State) ->
     {reply, save(Key, Res), State};
 handle_call(_Request, _From, State) ->
-    {reply, {error, undefined_call}, State}.
+    {noreply, State}.
 
 %%--------------------------------------------------------------------
 %% @private