Skip to content

Commit

Permalink
Merge pull request #169 from junkurihara/fix/reloader
Browse files Browse the repository at this point in the history
fix: reloader
  • Loading branch information
junkurihara authored Jul 26, 2024
2 parents 0950fdb + 3b918af commit 9c3a3ba
Show file tree
Hide file tree
Showing 7 changed files with 241 additions and 225 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.9.0-alpha.1"
version = "0.9.0-alpha.2"
authors = ["Jun Kurihara"]
homepage = "https://github.com/junkurihara/rust-rpxy"
repository = "https://github.com/junkurihara/rust-rpxy"
Expand Down
2 changes: 1 addition & 1 deletion rpxy-acme/src/manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ impl AcmeManager {
if let Some(cancel_token) = cancel_token.as_ref() {
tokio::select! {
_ = task => {},
_ = cancel_token.cancelled() => { info!("rpxy ACME manager task for {domain} terminated") }
_ = cancel_token.cancelled() => { debug!("rpxy ACME manager task for {domain} terminated") }
}
} else {
task.await;
Expand Down
2 changes: 1 addition & 1 deletion rpxy-bin/src/constants.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pub const LISTEN_ADDRESSES_V4: &[&str] = &["0.0.0.0"];
pub const LISTEN_ADDRESSES_V6: &[&str] = &["[::]"];
pub const CONFIG_WATCH_DELAY_SECS: u32 = 20;
pub const CONFIG_WATCH_DELAY_SECS: u32 = 15;

#[cfg(feature = "cache")]
// Cache directory
Expand Down
Loading

0 comments on commit 9c3a3ba

Please sign in to comment.