rbbt-util 5.26.144 → 5.26.145
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/share/rbbt_commands/workflow/server +10 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8dc18db865b5d2c8f5dc3675f19e5a4da5ceb46ed93e96703cf62c49ea3e40c6
|
|
4
|
+
data.tar.gz: ae53252c8c9c44b522ce935fcd73a3c431127a3f736479e07386750b001d9f63
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cc94ed4b99f51c5d75874f6ad86cd5951e12a6f6f2771ebb33009a1eec36bc8beb26e2d3b8c4cafc73d7bb756fc88989530e3a6001fa00c8606d88a286d8e4a6
|
|
7
|
+
data.tar.gz: 1c9a9777b74a3a3d5052fa445efd6980eae8dba069f1c3f7791e4846bb972c694cb495c44b139c209e95d0c030fc230ee10c0a611a4fdd9768b27f414e2bc0f2
|
|
@@ -117,7 +117,16 @@ TmpFile.with_file do |app_dir|
|
|
|
117
117
|
`env RBBT_LOG=#{Log.severity.to_s} puma '#{config_ru_file}' -p #{options[:Port] || "2887"} -w 20 -t 10:160 --preload`
|
|
118
118
|
else
|
|
119
119
|
options[:config] = config_ru_file
|
|
120
|
-
|
|
120
|
+
|
|
121
|
+
clean_options = {}
|
|
122
|
+
options.each do |k,v|
|
|
123
|
+
begin
|
|
124
|
+
clean_options[k.to_sym] = v
|
|
125
|
+
rescue
|
|
126
|
+
end
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
Rack::Server.start(clean_options)
|
|
121
130
|
end
|
|
122
131
|
end
|
|
123
132
|
end
|