Skip to content

Commit

Permalink
Fix create snapshot path
Browse files Browse the repository at this point in the history
  • Loading branch information
Hamdy-khader committed Aug 22, 2023
1 parent 3c968ba commit ed43ede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/util/jsonrpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ func (client *rpcClient) snapshot(lvolID, snapShotName string) (string, error) {
SnapShotName: snapShotName,
}
var snapshotID string
err := client.callSBCLI("POST", "/csi/create_snapshot", &params, &snapshotID)
err := client.callSBCLI("POST", "csi/create_snapshot", &params, &snapshotID)
return snapshotID, err
}

Expand Down

0 comments on commit ed43ede

Please sign in to comment.