在Scala中截断

时间:2019-04-19 11:40:02

标签: scala scala-gatling

我有一个问题:我想从目录中读取多个xml文件(file1.xml,file2.xml ....),对于我在内存中读取的每个文件,然后我进行编辑和发送请求。用于阅读和编辑其工作正常,没有任何问题,但是当我发送请求时:

//some codes

.exec("protocol used".requestReply.message(StringBody( session => session(value of xml file).as[String]))
.check(substring("XXX"))
//some codes

我收到此错误:

[ERROR] i.g.c.s.w.BufferedFileChannelWriter - Buffer overflow, you shouldn't be logging that much data. Truncating.

但是我不知道如何截断请求。我的意思是,我想读取每个xml文件的编辑内容并发送每个文件的请求(逐个文件),实际上我认为他同时读取所有xml文件并同时发送它们。有什么主意吗?

0 个答案:

没有答案