Skip to content

Commit 595f3e2

Browse files
authored
Remove maturity=beta (#83)
Signed-off-by: Sameer Shaikh <sameer.shaikh@ibm.com>
1 parent 9054244 commit 595f3e2

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

common/vpcclient/vpcfilevolume/create_file_share.go

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,7 @@ func (vs *FileShareService) CreateFileShare(shareTemplate *models.Share, ctxLogg
4141

4242
var share models.Share
4343
var apiErr models.Error
44-
var request *client.Request
45-
46-
//Revert this code once RFS is LA/GA from VPC IAAS side
47-
if shareTemplate.Profile != nil && shareTemplate.Profile.Name == RFSProfile {
48-
request = vs.client.WithQueryValue("maturity", "beta").NewRequest(operation)
49-
} else {
50-
request = vs.client.NewRequest(operation)
51-
}
44+
request := vs.client.NewRequest(operation)
5245

5346
ctxLogger.Info("Equivalent curl command and payload details", zap.Reflect("URL", request.URL()), zap.Reflect("Payload", shareTemplate), zap.Reflect("Operation", operation))
5447

0 commit comments

Comments
 (0)