Skip to content

Commit 4889743

Browse files
fix:: correct endpoint path to /exit-causes
1 parent b92beb5 commit 4889743

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pre-compute/src/api/worker_api.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ impl WorkerApiClient {
104104
chain_task_id: &str,
105105
exit_causes: &[ReplicateStatusCause],
106106
) -> Result<(), ReplicateStatusCause> {
107-
let url = format!("{}/compute/pre/{chain_task_id}/exit", self.base_url);
107+
let url = format!("{}/compute/pre/{chain_task_id}/exit-causes", self.base_url);
108108
match self
109109
.client
110110
.post(&url)

0 commit comments

Comments
 (0)