summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Sun <tony.sun427@gmail.com>2018-08-16 13:27:22 -0700
committerGitHub <noreply@github.com>2018-08-16 13:27:22 -0700
commita4f3ca3c4868beee9992aa5b2d66bb9dc0b54e98 (patch)
treece569130798d4ec7bf9ac4ac910b2afde8921760
parentb9805be08c48b7d65517674477af282260eee09c (diff)
downloadcouchdb-a4f3ca3c4868beee9992aa5b2d66bb9dc0b54e98.tar.gz
fix typo to noreply (#29)
BugzId:109264
-rw-r--r--src/dreyfus_index.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dreyfus_index.erl b/src/dreyfus_index.erl
index 5f87ab5b6..93b25acf7 100644
--- a/src/dreyfus_index.erl
+++ b/src/dreyfus_index.erl
@@ -146,7 +146,7 @@ handle_call({await, RequestSeq}, _From,
#state{index=#index{current_seq=Seq}}=State) when RequestSeq =< Seq ->
{reply, {ok, State#state.index_pid, Seq}, State};
handle_call({await, RequestSeq}, From, #state{waiting_list=WaitList}=State) ->
- {no_reply, State#state{
+ {noreply, State#state{
waiting_list=[{From,RequestSeq}|WaitList]
}};