train-core 3.16.0 → 3.16.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 +4 -4
- data/lib/train/transports/local.rb +5 -1
- data/lib/train/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8c128201cccb279232b166336df2264fa69d23d4244678a25c46ec1ecf72a47b
|
|
4
|
+
data.tar.gz: bed78ce368487e2e220d5b5361f49f20ed2d4483f2033b4800dff57cd07a0e4a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1ca1fc41aabfd604cf2e7cd9d8ac7cf64f733d29a96b8a7b8c48e608b7f88a30627009a51a7f6fc47c99f012db153fbdee8736e94f35ad8954fdb74b0b92f2f9
|
|
7
|
+
data.tar.gz: 15fb4bef30b0391a70c6fce30e41b836101e6d9181bc93ab30838023b5cb86a4c00e18bfe7b8bb715f916b1702eed79d86135440ac629332e74f69b5abd7b79d
|
|
@@ -270,7 +270,11 @@ module Train::Transports
|
|
|
270
270
|
$pipeSecurity.AddAccessRule($rule)
|
|
271
271
|
$pipeServer = New-Object System.IO.Pipes.NamedPipeServerStream('#{pipe_name}', [System.IO.Pipes.PipeDirection]::InOut, 1, [System.IO.Pipes.PipeTransmissionMode]::Byte, [System.IO.Pipes.PipeOptions]::None, 4096, 4096, $pipeSecurity)
|
|
272
272
|
|
|
273
|
-
|
|
273
|
+
try {
|
|
274
|
+
$pipeServer.WaitForConnection()
|
|
275
|
+
} catch {
|
|
276
|
+
exit 1
|
|
277
|
+
}
|
|
274
278
|
|
|
275
279
|
$pipeReader = New-Object System.IO.StreamReader($pipeServer)
|
|
276
280
|
$pipeWriter = New-Object System.IO.StreamWriter($pipeServer)
|
data/lib/train/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: train-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.16.
|
|
4
|
+
version: 3.16.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chef InSpec Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-01-
|
|
11
|
+
date: 2026-01-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|