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
Expected
No overflow
Reproduction Steps
No current overflow, so no reproduction. However
The text was updated successfully, but these errors were encountered:
Consider changing the Workflow ID parameter and model to use
int64
instead ofint
. A recent Workflow I created got the ID of around141,000,000
which is still a ways from int.MaxValue of2,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: int64Expected
No overflow
Reproduction Steps
No current overflow, so no reproduction. However
The text was updated successfully, but these errors were encountered: