mirror of https://github.com/apache/activemq.git
AMQ-6934 - Updating Jackson to 2.9.4
(cherry picked from commit d195b01f3b
)
This commit is contained in:
parent
2ca46c561b
commit
e090425891
|
@ -290,7 +290,8 @@ class DFSLevelDBClient(val store:DFSLevelDBStore) extends LevelDBClient(store) {
|
||||||
|
|
||||||
indexFileRefCounters.getOrElseUpdate(target.getName, new LongCounter()).incrementAndGet()
|
indexFileRefCounters.getOrElseUpdate(target.getName, new LongCounter()).incrementAndGet()
|
||||||
using(dfs.create(target, true, 1024*32, dfsReplication.toShort, dfsBlockSize)) { os=>
|
using(dfs.create(target, true, 1024*32, dfsReplication.toShort, dfsBlockSize)) { os=>
|
||||||
JsonCodec.mapper.writeValue(os, mf)
|
var outputStream:OutputStream = os.asInstanceOf[OutputStream]
|
||||||
|
JsonCodec.mapper.writeValue(outputStream, mf)
|
||||||
}
|
}
|
||||||
|
|
||||||
snapshots += snapshot_id -> Snapshot(mf.current_manifest, Set(mf.files.toSeq:_*))
|
snapshots += snapshot_id -> Snapshot(mf.current_manifest, Set(mf.files.toSeq:_*))
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -72,7 +72,7 @@
|
||||||
<httpclient-version>4.5.3</httpclient-version>
|
<httpclient-version>4.5.3</httpclient-version>
|
||||||
<httpcore-version>4.4.6</httpcore-version>
|
<httpcore-version>4.4.6</httpcore-version>
|
||||||
<insight-version>1.2.0.Beta4</insight-version>
|
<insight-version>1.2.0.Beta4</insight-version>
|
||||||
<jackson-version>2.6.7</jackson-version>
|
<jackson-version>2.9.4</jackson-version>
|
||||||
<jasypt-version>1.9.2</jasypt-version>
|
<jasypt-version>1.9.2</jasypt-version>
|
||||||
<jaxb-bundle-version>2.2.11_1</jaxb-bundle-version>
|
<jaxb-bundle-version>2.2.11_1</jaxb-bundle-version>
|
||||||
<jdom-version>1.0</jdom-version>
|
<jdom-version>1.0</jdom-version>
|
||||||
|
|
Loading…
Reference in New Issue