Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
csi: correct conditional logic for fuse mount options argument
Previously, the function incorrectly checked if `len(options) == 0`, causing it to return a non-empty argument when no options were provided. This fix updates the condition to `len(options) > 0`, ensuring the argument is only set when options exist. Signed-off-by: Praveen M <m.praveen@ibm.com>
- Loading branch information