Skip to content

Commit

Permalink
refactor: release build slot parse type correctly (#538)
Browse files Browse the repository at this point in the history
  • Loading branch information
chesedo authored Dec 14, 2022
1 parent 5ed12ad commit 5d638dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deployer/src/deployment/gateway_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ impl BuildQueueClient for GatewayClient {

async fn release_slot(&self, id: Uuid) -> Result<(), Error> {
let body = stats::LoadRequest { id };
self.delete("stats/load", Some(body)).await?;
let _load: stats::LoadResponse = self.delete("stats/load", Some(body)).await?;

Ok(())
}
Expand Down

0 comments on commit 5d638dc

Please sign in to comment.