Wildfly - 服务器没有及时响应

时间:2018-02-05 16:35:30

标签: timeout wildfly

我正在使用Wildfly 10和resteasy实现。 在200秒请求后,2个jbosses之间的通信中断 我在web.xml中定义了30分钟的超时时间

var es = require('event-stream') 
var util = require('util')
var ss = require('socket.io-stream'); 
var stream = ss.createStream();

io.on('connection', function(socket){

ss(socket).emit('blockchainOps', stream, function(){


        client.blockchain.getBlockStream()
            .pipe(es.map(function(block, callback) {
                callback(null, util.inspect(block) + '\n') 
                }))
            .pipe(process.stdout)


}());

});

服务器没有及时回复。

 Probable cause: * returned an error response with a status: 504 and a response message: <html><body><h1>504 Gateway Time-out</h1>

有没有人可以帮我找出在standalone.xml或其他地方配置这个超时的位置? 提前致谢

0 个答案:

没有答案