Replacing Commons vfs by nio. Tests passing
This commit is contained in:
parent
f097dc8f70
commit
11552b6a6f
@ -15,7 +15,6 @@
|
|||||||
*/
|
*/
|
||||||
package inr.numass.server;
|
package inr.numass.server;
|
||||||
|
|
||||||
import hep.dataforge.data.binary.Binary;
|
|
||||||
import hep.dataforge.exceptions.StorageException;
|
import hep.dataforge.exceptions.StorageException;
|
||||||
import hep.dataforge.io.envelopes.Envelope;
|
import hep.dataforge.io.envelopes.Envelope;
|
||||||
import hep.dataforge.io.envelopes.EnvelopeBuilder;
|
import hep.dataforge.io.envelopes.EnvelopeBuilder;
|
||||||
@ -168,8 +167,8 @@ public class NumassRun implements Metoid, Responder {
|
|||||||
String filePath = message.meta().getString("path", "");
|
String filePath = message.meta().getString("path", "");
|
||||||
String fileName = message.meta().getString("name")
|
String fileName = message.meta().getString("name")
|
||||||
.replace(NumassStorage.NUMASS_ZIP_EXTENSION, "");// removing .nm.zip if it is present
|
.replace(NumassStorage.NUMASS_ZIP_EXTENSION, "");// removing .nm.zip if it is present
|
||||||
if(storage instanceof NumassStorage) {
|
if (storage instanceof NumassStorage) {
|
||||||
((NumassStorage) storage).pushNumassData(filePath, fileName, Binary.readToBuffer(message.getData()));
|
((NumassStorage) storage).pushNumassData(filePath, fileName, message.getData().getBuffer());
|
||||||
} else {
|
} else {
|
||||||
throw new StorageException("Storage does not support numass point push");
|
throw new StorageException("Storage does not support numass point push");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user