diff options
| author | Matthew Sackman <matthew@lshift.net> | 2010-03-09 13:04:30 +0000 |
|---|---|---|
| committer | Matthew Sackman <matthew@lshift.net> | 2010-03-09 13:04:30 +0000 |
| commit | 2e9283c0fa72f5f41750c89707655f006c94805f (patch) | |
| tree | 341128e8becf8b21a67837c26c2e5c547ff6cf87 | |
| parent | eae0845e8829aeadd8b65b776e0108081bde27f9 (diff) | |
| download | rabbitmq-server-git-2e9283c0fa72f5f41750c89707655f006c94805f.tar.gz | |
Unnecessary variable
| -rw-r--r-- | src/rabbit_msg_store.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_msg_store.erl b/src/rabbit_msg_store.erl index 27fcbbd01d..86f1d9c936 100644 --- a/src/rabbit_msg_store.erl +++ b/src/rabbit_msg_store.erl @@ -547,7 +547,7 @@ handle_cast({write, MsgId, Msg}, { sum_valid_data = SumValid + TotalSize, sum_file_size = SumFileSize + TotalSize } ))); - #msg_location { ref_count = RefCount, file = File } -> + #msg_location { ref_count = RefCount } -> %% We already know about it, just update counter. Only %% update field otherwise bad interaction with concurrent GC ok = index_update_fields(MsgId, |
