Merge pull request #9 from basho/kuenishi-patch-1
Fix gen_server style return value
This commit is contained in:
commit
71cbf019f5
1 changed files with 1 additions and 1 deletions
|
@ -496,7 +496,7 @@ do_write_head2(File, Offset, Chunk, Depth, STime, TO,
|
||||||
when Retry == partition; Retry == bad_epoch; Retry == wedged ->
|
when Retry == partition; Retry == bad_epoch; Retry == wedged ->
|
||||||
do_write_head(File, Offset, Chunk, Depth, STime, TO, S);
|
do_write_head(File, Offset, Chunk, Depth, STime, TO, S);
|
||||||
{error, written}=Err ->
|
{error, written}=Err ->
|
||||||
Err;
|
{reply, Err, S};
|
||||||
{error, not_written} ->
|
{error, not_written} ->
|
||||||
exit({todo_should_never_happen,?MODULE,?LINE,
|
exit({todo_should_never_happen,?MODULE,?LINE,
|
||||||
iolist_size(Chunk)})
|
iolist_size(Chunk)})
|
||||||
|
|
Loading…
Reference in a new issue