Skip to content
This repository has been archived by the owner on Feb 3, 2023. It is now read-only.

Commit

Permalink
CHANGELOG and some clarification
Browse files Browse the repository at this point in the history
  • Loading branch information
maackle committed Jul 19, 2019
1 parent e2f4699 commit 59c4912
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG-UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
### Added
- **BREAKING:** Zomes must now include a `validate_agent` callback. If this rejects in any zome the DNA will not start. This can be used to enforce membrane requirements. [#1497](https://github.com/holochain/holochain-rust/pull/1497)
- Added a `get_links_count` method which allows the user to get number of links by base and tag [#1568](https://github.com/holochain/holochain-rust/pull/1568)### Changed
- The Conductor will shut down gracefully when receiving SIGINT (i.e. Ctrl+C) or SIGKILL, also causing a graceful shutdown of an attached n3h instance, if running [#1599](https://github.com/holochain/holochain-rust/pull/1599)

### Deprecated

Expand Down
2 changes: 1 addition & 1 deletion conductor/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ fn main() {
println!("Gracefully shutting down conductor...");
} else {
println!(
"Explicitly shutting down conductor. {} other threads are referencing it.",
"Explicitly shutting down conductor. {} other threads were referencing it, so if unwrap errors follow, that might be why.",
refs - 1
);
conductor
Expand Down
2 changes: 1 addition & 1 deletion conductor_api/src/conductor/base.rs
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ impl Conductor {

/// Stop and clear all instances
pub fn shutdown(&mut self) -> Result<(), HolochainInstanceError> {
let _ = self.stop_all_instances()?;
self.stop_all_instances()?;
self.stop_all_interfaces();
self.signal_multiplexer_kill_switch
.as_ref()
Expand Down

0 comments on commit 59c4912

Please sign in to comment.