itsi 0.1.12 → 0.1.13
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/Rakefile +1 -1
- data/crates/itsi_server/src/server/process_worker.rs +3 -3
- data/crates/itsi_server/src/server/serve_strategy/single_mode.rs +1 -1
- data/crates/itsi_server/src/server/signal.rs +6 -6
- data/gems/scheduler/lib/itsi/scheduler/version.rb +1 -1
- data/gems/server/lib/itsi/server/version.rb +1 -1
- data/lib/itsi/version.rb +1 -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: b1158316cdd2fa28b2c3a186e32ff9fe61fd4d5a02fe19d647ec3e296e0addb0
|
4
|
+
data.tar.gz: 39f2479ed8cf1aa15fb6ff3d41d0a8118133f51122d118e6896591b7e97bed50
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40aff8e7b42ecd96da0c72362011be3a760ffffe9069ac74582befa1fd1681ed3f5c60b351e9b1b8f0e627cece5255211965f34eca610ebfafb0ccd9df957eb0
|
7
|
+
data.tar.gz: 755fad1a65c4211acb166a38496a915b3c88f35ca42518c856d861cbe653eb3194db7174e9ba4d36d9afc88071004e3301ea9b174c0d0f259607b10fa6385105
|
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
require 'bundler/gem_tasks'
|
4
4
|
require 'minitest/test_task'
|
5
|
-
|
5
|
+
|
6
6
|
# Ensure the nested gems' `lib` directories are included in the LOAD_PATH
|
7
7
|
$LOAD_PATH.unshift(File.expand_path('scheduler/lib', __dir__))
|
8
8
|
$LOAD_PATH.unshift(File.expand_path('server/lib', __dir__))
|
@@ -7,7 +7,7 @@ use nix::{
|
|
7
7
|
sys::{
|
8
8
|
signal::{
|
9
9
|
kill,
|
10
|
-
Signal::{
|
10
|
+
Signal::{SIGKILL, SIGTERM, SIGUSR2},
|
11
11
|
},
|
12
12
|
wait::{waitpid, WaitPidFlag, WaitStatus},
|
13
13
|
},
|
@@ -195,8 +195,8 @@ impl ProcessWorker {
|
|
195
195
|
let child_pid = *self.child_pid.lock();
|
196
196
|
if let Some(pid) = child_pid {
|
197
197
|
println!("Worker {:?}, PID: {:?}", self.worker_id, pid);
|
198
|
-
if let Err(e) = kill(pid,
|
199
|
-
error!("Failed to send
|
198
|
+
if let Err(e) = kill(pid, SIGUSR2) {
|
199
|
+
error!("Failed to send SIGUSR2 to process {}: {}", pid, e);
|
200
200
|
}
|
201
201
|
}
|
202
202
|
|
@@ -399,7 +399,7 @@ impl SingleMode {
|
|
399
399
|
|
400
400
|
/// Attempts to reload the config "live"
|
401
401
|
/// Not that when running in single mode this will not unload
|
402
|
-
/// old code. If you need a clean restart, use the `restart` (
|
402
|
+
/// old code. If you need a clean restart, use the `restart` (SIGHUP) method instead
|
403
403
|
pub fn reload(&self) -> Result<()> {
|
404
404
|
let should_reexec = self.server_config.clone().reload(false)?;
|
405
405
|
if should_reexec {
|
@@ -30,7 +30,7 @@ fn receive_signal(signum: i32, _: sighandler_t) {
|
|
30
30
|
.ok();
|
31
31
|
}
|
32
32
|
}
|
33
|
-
libc::
|
33
|
+
libc::SIGUSR2 => {
|
34
34
|
SIGNAL_HANDLER_CHANNEL
|
35
35
|
.0
|
36
36
|
.send(LifecycleEvent::PrintInfo)
|
@@ -39,7 +39,7 @@ fn receive_signal(signum: i32, _: sighandler_t) {
|
|
39
39
|
libc::SIGUSR1 => {
|
40
40
|
SIGNAL_HANDLER_CHANNEL.0.send(LifecycleEvent::Restart).ok();
|
41
41
|
}
|
42
|
-
libc::
|
42
|
+
libc::SIGHUP => {
|
43
43
|
SIGNAL_HANDLER_CHANNEL.0.send(LifecycleEvent::Reload).ok();
|
44
44
|
}
|
45
45
|
libc::SIGTTIN => {
|
@@ -69,9 +69,9 @@ pub fn reset_signal_handlers() -> bool {
|
|
69
69
|
unsafe {
|
70
70
|
libc::signal(libc::SIGTERM, receive_signal as usize);
|
71
71
|
libc::signal(libc::SIGINT, receive_signal as usize);
|
72
|
-
libc::signal(libc::SIGINFO, receive_signal as usize);
|
73
|
-
libc::signal(libc::SIGUSR1, receive_signal as usize);
|
74
72
|
libc::signal(libc::SIGUSR2, receive_signal as usize);
|
73
|
+
libc::signal(libc::SIGUSR1, receive_signal as usize);
|
74
|
+
libc::signal(libc::SIGHUP, receive_signal as usize);
|
75
75
|
libc::signal(libc::SIGTTIN, receive_signal as usize);
|
76
76
|
libc::signal(libc::SIGTTOU, receive_signal as usize);
|
77
77
|
libc::signal(libc::SIGCHLD, receive_signal as usize);
|
@@ -83,9 +83,9 @@ pub fn clear_signal_handlers() {
|
|
83
83
|
unsafe {
|
84
84
|
libc::signal(libc::SIGTERM, libc::SIG_DFL);
|
85
85
|
libc::signal(libc::SIGINT, libc::SIG_DFL);
|
86
|
-
libc::signal(libc::SIGINFO, libc::SIG_DFL);
|
87
|
-
libc::signal(libc::SIGUSR1, libc::SIG_DFL);
|
88
86
|
libc::signal(libc::SIGUSR2, libc::SIG_DFL);
|
87
|
+
libc::signal(libc::SIGUSR1, libc::SIG_DFL);
|
88
|
+
libc::signal(libc::SIGHUP, libc::SIG_DFL);
|
89
89
|
libc::signal(libc::SIGTTIN, libc::SIG_DFL);
|
90
90
|
libc::signal(libc::SIGTTOU, libc::SIG_DFL);
|
91
91
|
libc::signal(libc::SIGCHLD, libc::SIG_DFL);
|
data/lib/itsi/version.rb
CHANGED