You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider changing the Workflow ID parameter and model to use int64 instead of int. A recent Workflow I created got the ID of around 141,000,000 which is still a ways from int.MaxValue of 2,147,483,647. But given enough time and more users making workflows this could eventually overflow.
Schema Inaccuracy
#/components/parameters/workflow-id - Consider that int32 may overflow in the future. Add format: int64
#/components/schemas/workflow/id - Consider that int32 may overflow in the future. Add format: int64