mirror of
https://github.com/soconnor0919/hristudio.git
synced 2026-05-08 13:58:55 -04:00
fix: allow timeoutMs=0 for wait blocks
This commit is contained in:
@@ -55,7 +55,7 @@ const actionSourceSchema = z
|
|||||||
const executionDescriptorSchema = z
|
const executionDescriptorSchema = z
|
||||||
.object({
|
.object({
|
||||||
transport: z.enum(["ros2", "rest", "internal"]),
|
transport: z.enum(["ros2", "rest", "internal"]),
|
||||||
timeoutMs: z.number().int().positive().optional(),
|
timeoutMs: z.number().int().min(0).optional(),
|
||||||
retryable: z.boolean().optional(),
|
retryable: z.boolean().optional(),
|
||||||
ros2: z
|
ros2: z
|
||||||
.object({
|
.object({
|
||||||
|
|||||||
Reference in New Issue
Block a user