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