itsi-server 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7f14ba63317aeb0e97ff111d71fc3b9715da347d53c3c88976a19170a2903667
4
- data.tar.gz: f039b7e1cb643d2fbfa2630a909f78c9a92afa4d158402242fc43f91e8972c34
3
+ metadata.gz: 670883c9765e511a9214665d8da8bc714ccb1f81d2fba3fde99f0b1ea5c2326f
4
+ data.tar.gz: 1b987efac022c4e0c3d9675ee0c19f5d50b0379086506326bb575ec6c64c79ce
5
5
  SHA512:
6
- metadata.gz: 4a8158fd60914bc410cb56fd962954bf0c3d3be5ac0b87729bffbd01f6f85937d767b4eaf509ee8feedff304aebb3d08aeefe07571cefdc554ff9955c943c602
7
- data.tar.gz: fb7e9643a87c3570df8230614baf5fdc597c2ec1cd5f81db4e9aa56d3fd57357a740d288ef653f17b6a4546686630be8c822877484062a9b3b1452368abfd0f7
6
+ metadata.gz: 536978e9b83fa36774611a1532bafa4b81fdb22b1e534254309c3a71c5217716a2e47c5a47871d9ac864e1e081cad060cff05c7665cd6c4405c15269d7ebbca8
7
+ data.tar.gz: 43d0f3deec03e66785b2f88c130f128e9427f752623ed3f1a85f65696821909edf9c0c8e46306ead54bda0fab92c23b896b4deed9aab43c3d35f7c9b9f27b59f
@@ -7,7 +7,7 @@ use nix::{
7
7
  sys::{
8
8
  signal::{
9
9
  kill,
10
- Signal::{SIGINFO, SIGKILL, SIGTERM},
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, SIGINFO) {
199
- error!("Failed to send SIGINFO to process {}: {}", pid, e);
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` (SIGUSR2) method instead
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::SIGINFO => {
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::SIGUSR2 => {
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);
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Itsi
4
4
  class Server
5
- VERSION = "0.1.12"
5
+ VERSION = "0.1.13"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itsi-server
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.12
4
+ version: 0.1.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wouter Coppieters