bayserver-docker-fcgi 3.0.5 → 3.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e1c17f439e98ac27811679751b5e2d2c5692687985e4515d0e6adc320602bf16
|
|
4
|
+
data.tar.gz: 831b8d5a6e2a036d499c53cd198fed9059db11285293d361fa3bf4a5bb28305c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fcfbb9a49998081ab2eac49489984543088e9eb952f503b6b20870e57297db051034db23362a45563c4ba9fec5e21aa287c2ff28014697bb0b5ac171eaaa88ac
|
|
7
|
+
data.tar.gz: 22f34820fb394819381c4e146c40fc1f2653eae50274dace1184ba13c792a7a604b77b0f4830c1d9381909cfdc93273e7bade0bccf5e4cb1cdf68725832e8765
|
|
@@ -153,7 +153,7 @@ module Baykit
|
|
|
153
153
|
|
|
154
154
|
check_req_id(cmd.req_id)
|
|
155
155
|
|
|
156
|
-
|
|
156
|
+
#@req_id = cmd.req_id
|
|
157
157
|
BayLog.debug("%s begin_req get_tour req_id=%d", sip, cmd.req_id)
|
|
158
158
|
tur = sip.get_tour(cmd.req_id)
|
|
159
159
|
if tur == nil
|
|
@@ -258,6 +258,7 @@ module Baykit
|
|
|
258
258
|
end
|
|
259
259
|
|
|
260
260
|
tur.req.uri = @env["REQUEST_URI"]
|
|
261
|
+
HttpUtil.check_uri(tur.req.uri)
|
|
261
262
|
tur.req.protocol = @env["SERVER_PROTOCOL"]
|
|
262
263
|
tur.req.method = @env["REQUEST_METHOD"]
|
|
263
264
|
|
|
@@ -330,12 +331,12 @@ module Baykit
|
|
|
330
331
|
raise ProtocolException.new("Invalid request id: %d", received_id)
|
|
331
332
|
end
|
|
332
333
|
|
|
333
|
-
if
|
|
334
|
+
if req_id == FcgPacket::FCGI_NULL_REQUEST_ID
|
|
334
335
|
@req_id = received_id
|
|
335
336
|
end
|
|
336
337
|
|
|
337
338
|
if @req_id != received_id
|
|
338
|
-
BayLog.error("%s invalid request id: received=%d reqId=%d",
|
|
339
|
+
BayLog.error("%s invalid request id: received=%d reqId=%d", ship, received_id, @req_id)
|
|
339
340
|
raise ProtocolException.new("Invalid request id: %d", received_id)
|
|
340
341
|
end
|
|
341
342
|
end
|
|
@@ -11,7 +11,6 @@ module Baykit
|
|
|
11
11
|
include Baykit::BayServer::Docker::Fcgi::FcgDocker # implements
|
|
12
12
|
|
|
13
13
|
include Baykit::BayServer::Protocol
|
|
14
|
-
include Baykit::BayServer::WaterCraft
|
|
15
14
|
include Baykit::BayServer::Docker::Base
|
|
16
15
|
|
|
17
16
|
######################################################
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bayserver-docker-fcgi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michisuke-P
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-02-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bayserver-core
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 3.
|
|
19
|
+
version: 3.3.1
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 3.
|
|
26
|
+
version: 3.3.1
|
|
27
27
|
description: BayServer is one of the high-speed web servers. It operates as a single-threaded,
|
|
28
28
|
asynchronous server, which makes it exceptionally fast. It also supports multi-core
|
|
29
29
|
processors, harnessing the full potential of the CPU's capabilities.
|