Update to GreenRhombus 1.0.6
This commit is contained in:
parent
55ec899621
commit
86e2b00c25
2 changed files with 6 additions and 1 deletions
5
index.js
5
index.js
|
@ -182,6 +182,11 @@ function createFastCGIHandler(options) {
|
|||
if (typeof socket !== "undefined") {
|
||||
socket.removeListener("data", fastCGISocketHandler);
|
||||
processFastCGIPacket = function() {};
|
||||
try {
|
||||
socket.end(); //Fixes connection not closing properly in Bun
|
||||
} catch (err) {
|
||||
//It is already closed
|
||||
}
|
||||
}
|
||||
var appStatus = processedPacket.content.readUInt32BE(0);
|
||||
var protocolStatus = processedPacket.content.readUInt8(4);
|
||||
|
|
2
mod.info
2
mod.info
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"name": "GreenRhombus FastCGI client for SVR.JS",
|
||||
"version": "1.0.5"
|
||||
"version": "1.0.6"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue