diff options
Diffstat (limited to 'cli/js/ops/process.ts')
-rw-r--r-- | cli/js/ops/process.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/ops/process.ts b/cli/js/ops/process.ts index 845909d5d..384718cef 100644 --- a/cli/js/ops/process.ts +++ b/cli/js/ops/process.ts @@ -12,7 +12,7 @@ interface RunStatusResponse { exitSignal: number; } -export async function runStatus(rid: number): Promise<RunStatusResponse> { +export function runStatus(rid: number): Promise<RunStatusResponse> { return sendAsync("op_run_status", { rid }); } |