Fix bug where force_flag is a string

This commit is contained in:
2024-08-20 10:10:33 -04:00
parent a6e824a049
commit faf920ac1d
2 changed files with 2 additions and 2 deletions

View File

@ -6061,7 +6061,7 @@ class API_Storage_Ceph_Volume_Root(Resource):
reqargs.get("pool", None),
reqargs.get("volume", None),
reqargs.get("size", None),
reqargs.get("force", False),
bool(strtobool(reqargs.get("force", "False"))),
)