From b3841de44a8b3028ff73625a7147423aa87e9cdb Mon Sep 17 00:00:00 2001 From: bigcat88 Date: Tue, 21 Apr 2026 15:14:27 +0300 Subject: [PATCH] increase poll_interval from 5 to 9 --- comfy_api_nodes/nodes_veo2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comfy_api_nodes/nodes_veo2.py b/comfy_api_nodes/nodes_veo2.py index b3ba5c5b7..084b086a8 100644 --- a/comfy_api_nodes/nodes_veo2.py +++ b/comfy_api_nodes/nodes_veo2.py @@ -434,7 +434,7 @@ class Veo3VideoGenerationNode(IO.ComfyNode): response_model=VeoGenVidPollResponse, status_extractor=lambda r: "completed" if r.done else "pending", data=VeoGenVidPollRequest(operationName=initial_response.name), - poll_interval=5.0, + poll_interval=9.0, estimated_duration=AVERAGE_DURATION_VIDEO_GEN, ) @@ -604,7 +604,7 @@ class Veo3FirstLastFrameNode(IO.ComfyNode): data=VeoGenVidPollRequest( operationName=initial_response.name, ), - poll_interval=5.0, + poll_interval=9.0, estimated_duration=AVERAGE_DURATION_VIDEO_GEN, )