Skip to content
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: 2 additions & 0 deletions apps/invoke.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ You can invoke your app by making a `POST` request to Kernel's API or via the CL

For long running jobs, use asynchronous invocations to trigger Kernel actions without waiting for the result. You can then poll its [status](/apps/status) for the result.

<Info>Asynchronous invocations time out after 15 minutes.</Info>

<AsyncInvocation />

## Via CLI
Expand Down
2 changes: 1 addition & 1 deletion reference/cli/apps.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Invoke a specific app action by its name. Generates an Invocation.
| `--payload <payload_data>`, `-p` | Stringified JSON object (max 64 KB). Optional. |
| `--sync`, `-s` | Invoke synchronously (default false). Optional. |

<Info>Synchronous invocations open a long-lived HTTP POST that times out after 60 seconds. Press `ctrl-c` to terminate a running invocation; associated browsers are destroyed.</Info>
<Info>Synchronous invocations open a long-lived HTTP POST that times out after 60 seconds. Asynchronous invocations time out after 15 minutes. Press `ctrl-c` to terminate a running invocation; associated browsers are destroyed.</Info>

## `kernel app list`
List deployed application versions.
Expand Down