Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix abort() getting stuck when being passed a reference #67

Merged
merged 1 commit into from
Jan 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion suppaftp/src/async_ftp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ where
/// abort the previous FTP service command
pub async fn abort<R>(&mut self, data_stream: R) -> FtpResult<()>
where
R: Read + std::marker::Unpin,
R: Read + std::marker::Unpin + 'static,
{
debug!("Aborting active file transfer");
self.perform(Command::Abor).await?;
Expand Down
2 changes: 1 addition & 1 deletion suppaftp/src/sync_ftp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ where
}

/// abort the previous FTP service command
pub fn abort(&mut self, data_stream: impl Read) -> FtpResult<()> {
pub fn abort(&mut self, data_stream: impl Read + 'static) -> FtpResult<()> {
debug!("Aborting active file transfer");
self.perform(Command::Abor)?;
// Drop stream NOTE: must be done first, otherwise server won't return any response
Expand Down
Loading