refactor(性能测试): 性能测试下载zip使用流下载,兼容1.20升级上来的数据
This commit is contained in:
parent
e5e612c8c0
commit
f43a61f996
|
@ -192,6 +192,10 @@ public class EngineFactory {
|
||||||
if (CollectionUtils.isNotEmpty(resourceFiles)) {
|
if (CollectionUtils.isNotEmpty(resourceFiles)) {
|
||||||
resourceFiles.forEach(cf -> {
|
resourceFiles.forEach(cf -> {
|
||||||
InputStream in = fileMetadataService.getFileAsStream(cf.getId());
|
InputStream in = fileMetadataService.getFileAsStream(cf.getId());
|
||||||
|
if (in == null) {
|
||||||
|
byte[] bytes = fileMetadataService.loadFileAsBytes(cf.getId());
|
||||||
|
in = new ByteArrayInputStream(bytes);
|
||||||
|
}
|
||||||
testResourceFiles.put(cf.getName(), in);
|
testResourceFiles.put(cf.getName(), in);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue