Merge pull request #9 from basho/kuenishi-patch-1

Fix gen_server style return value
This commit is contained in:
Scott Lystig Fritchie 2015-10-14 16:34:07 +09:00
commit 71cbf019f5

View file

@ -496,7 +496,7 @@ do_write_head2(File, Offset, Chunk, Depth, STime, TO,
when Retry == partition; Retry == bad_epoch; Retry == wedged ->
do_write_head(File, Offset, Chunk, Depth, STime, TO, S);
{error, written}=Err ->
Err;
{reply, Err, S};
{error, not_written} ->
exit({todo_should_never_happen,?MODULE,?LINE,
iolist_size(Chunk)})