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
Kevin ran across container_size (in funcx-services/web-service/funcx_web_service/schemas/container.py, specified in ContainerBuildStatusUpdate):
class ContainerBuildStatusUpdate(BaseModel):
...
container_size: float = Field(default=0.0, description="Container size in bytes")
...
That is, the description lists "bytes" as the unit, but the data type is listed as a float? Does that seem correct to you? I would rather expect that to be a non-negative integer, like:
Kevin ran across container_size (in funcx-services/web-service/funcx_web_service/schemas/container.py, specified in ContainerBuildStatusUpdate):
That is, the description lists "bytes" as the unit, but the data type is listed as a float? Does that seem correct to you? I would rather expect that to be a non-negative integer, like:
But that matches the spec in the funcX Container Service code, which is, currently:
The text was updated successfully, but these errors were encountered: