Skip to content

Commit

Permalink
Add derive debug (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
toelo3 authored Jul 10, 2024
1 parent 330b557 commit d5f0180
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions dsh_sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [unreleased]
### Added
- Add derive debug to graceful_shutdown::Shutdown


## [0.4.3] - 2024-07-08
### Added
- Add missing get functions to datastreams struct
Expand Down
1 change: 1 addition & 0 deletions dsh_sdk/src/graceful_shutdown.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ use tokio_util::sync::CancellationToken;
/// Use clone to send shutdown request to all shutdown handles.
///
/// see [dsh_sdk::graceful_shutdown](index.html) for full implementation example.
#[derive(Debug)]
pub struct Shutdown {
cancel_token: CancellationToken,
shutdown_complete_tx: mpsc::Sender<()>,
Expand Down

0 comments on commit d5f0180

Please sign in to comment.