[prev in list] [next in list] [prev in thread] [next in thread] 

List:       activemq-commits
Subject:    [1/2] activemq-artemis git commit: ARTEMIS-1190 Long/int type mismatch in JDBCSequentialFile.setWrit
From:       clebertsuconic () apache ! org
Date:       2017-05-31 15:40:38
Message-ID: 6a0c6408f3964858b62f8cfc4c896365 () git ! apache ! org
[Download RAW message or body]

Repository: activemq-artemis
Updated Branches:
  refs/heads/1.x 2d850680d -> 0f40671a3


ARTEMIS-1190 Long/int type mismatch in JDBCSequentialFile.setWritePosition

(cherry picked from commit 69740a987d580c994a287ba533ae34d1bad407f1)


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/dc795dc5
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/dc795dc5
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/dc795dc5

Branch: refs/heads/1.x
Commit: dc795dc564eff29b58f4de5199168800476a9f88
Parents: 2d85068
Author: Erich Duda <eduda@redhat.com>
Authored: Tue May 30 12:34:42 2017 +0200
Committer: Erich Duda <eduda@redhat.com>
Committed: Wed May 31 07:53:01 2017 +0200

----------------------------------------------------------------------
 .../activemq/artemis/jdbc/store/file/JDBCSequentialFile.java       | 2 +-
 .../artemis/jdbc/store/file/JDBCSequentialFileFactoryDriver.java   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/dc795dc5/artemis-jdbc-sto \
                re/src/main/java/org/apache/activemq/artemis/jdbc/store/file/JDBCSequentialFile.java
                
----------------------------------------------------------------------
diff --git a/artemis-jdbc-store/src/main/java/org/apache/activemq/artemis/jdbc/store/file/JDBCSequentialFile.java \
b/artemis-jdbc-store/src/main/java/org/apache/activemq/artemis/jdbc/store/file/JDBCSequentialFile.java
 index e2da151..bb1cb61 100644
--- a/artemis-jdbc-store/src/main/java/org/apache/activemq/artemis/jdbc/store/file/JDBCSequentialFile.java
                
+++ b/artemis-jdbc-store/src/main/java/org/apache/activemq/artemis/jdbc/store/file/JDBCSequentialFile.java
 @@ -77,7 +77,7 @@ public class JDBCSequentialFile implements SequentialFile {
       this.dbDriver = driver;
    }
 
-   void setWritePosition(int writePosition) {
+   void setWritePosition(long writePosition) {
       this.writePosition = writePosition;
    }
 

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/dc795dc5/artemis-jdbc-sto \
re/src/main/java/org/apache/activemq/artemis/jdbc/store/file/JDBCSequentialFileFactoryDriver.java
                
----------------------------------------------------------------------
diff --git a/artemis-jdbc-store/src/main/java/org/apache/activemq/artemis/jdbc/store/file/JDBCSequentialFileFactoryDriver.java \
b/artemis-jdbc-store/src/main/java/org/apache/activemq/artemis/jdbc/store/file/JDBCSequentialFileFactoryDriver.java
 index a901f6a..ebf3e08 100644
--- a/artemis-jdbc-store/src/main/java/org/apache/activemq/artemis/jdbc/store/file/JDBCSequentialFileFactoryDriver.java
                
+++ b/artemis-jdbc-store/src/main/java/org/apache/activemq/artemis/jdbc/store/file/JDBCSequentialFileFactoryDriver.java
 @@ -159,7 +159,7 @@ public class JDBCSequentialFileFactoryDriver extends \
AbstractJDBCDriver {  if (rs.next()) {
                Blob blob = rs.getBlob(1);
                if (blob != null) {
-                  file.setWritePosition((int) blob.length());
+                  file.setWritePosition(blob.length());
                } else {
                   logger.warn("ERROR NO BLOB FOR FILE" + "File: " + \
file.getFileName() + " " + file.getId());  }


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic