Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshidan committed Nov 27, 2023
1 parent 853236e commit 1e96776
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pubsub/src/subscriber.rs
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,12 @@ async fn handle_message(
size
}

async fn modify_ack_deadline(subscriber_client: &SubscriberClient, subscription: String, ack_ids: Vec<String>, ack_deadline_seconds: i32) -> Result<(), Status> {
async fn modify_ack_deadline(
subscriber_client: &SubscriberClient,
subscription: String,
ack_ids: Vec<String>,
ack_deadline_seconds: i32,
) -> Result<(), Status> {
if ack_ids.is_empty() {
return Ok(());
}
Expand Down

0 comments on commit 1e96776

Please sign in to comment.