You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by jl...@apache.org on 2019/07/30 18:28:35 UTC

[incubator-pinot] branch master updated: minor fix double close (#4478)

This is an automated email from the ASF dual-hosted git repository.

jlli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new 08be56e  minor fix double close (#4478)
08be56e is described below

commit 08be56ebc34533e3a8810da737b60f7d91d2ec81
Author: Xue Yu <xu...@outlook.com>
AuthorDate: Wed Jul 31 02:28:28 2019 +0800

    minor fix double close (#4478)
---
 .../java/org/apache/pinot/core/io/util/FixedBitIntReaderWriter.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pinot-core/src/main/java/org/apache/pinot/core/io/util/FixedBitIntReaderWriter.java b/pinot-core/src/main/java/org/apache/pinot/core/io/util/FixedBitIntReaderWriter.java
index 56a862d..22a9327 100644
--- a/pinot-core/src/main/java/org/apache/pinot/core/io/util/FixedBitIntReaderWriter.java
+++ b/pinot-core/src/main/java/org/apache/pinot/core/io/util/FixedBitIntReaderWriter.java
@@ -65,7 +65,7 @@ public final class FixedBitIntReaderWriter implements Closeable {
       throws IOException {
     if (_dataBitSet != null) {
       _dataBitSet.close();
-      _dataBitSet.close();
+      _dataBitSet = null;
     }
   }
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org