diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2011-10-17 14:45:16 +0100 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2011-10-17 14:45:16 +0100 |
| commit | 73a83d32fad3f3c06f6ddc98c52b498743f401fb (patch) | |
| tree | 4c8014b4a54d21f7e7f37863e78585436772f3ae /src | |
| parent | 2f8ab8bbf679effb2048e050c0ba3757f167bdf0 (diff) | |
| download | rabbitmq-server-git-73a83d32fad3f3c06f6ddc98c52b498743f401fb.tar.gz | |
Give up on attempting to improve clarity.
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_msg_store.erl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/rabbit_msg_store.erl b/src/rabbit_msg_store.erl index 9049c67162..a25245c98f 100644 --- a/src/rabbit_msg_store.erl +++ b/src/rabbit_msg_store.erl @@ -804,12 +804,12 @@ handle_cast({write, CRef, MsgId}, %% If all writes get eliminated, cur_file_cache_ets could %% grow unbounded. To prevent that we delete the cache %% entry here, but only if the message isn't in the - %% current file (i.e. it has only ever been ignored). That - %% way reads of the message can continue to be done client - %% side, from either the cache or the non-current - %% files. If the message *is* in the current file then the - %% cache entry will be removed by the normal logic for - %% that in write_message/4 and maybe_roll_to_new_file/2. + %% current file. That way reads of the message can + %% continue to be done client side, from either the cache + %% or the non-current files. If the message *is* in the + %% current file then the cache entry will be removed by + %% the normal logic for that in write_message/4 and + %% maybe_roll_to_new_file/2. case index_lookup(MsgId, State1) of [#msg_location { file = File }] when File == State1 #msstate.current_file -> |
