Skip to content

Commit 77f0b9e

Browse files
committed
remove asynnc
1 parent acd98cd commit 77f0b9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apptrust/service/versions/version_service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ func (vs *versionService) DeleteAppVersion(ctx service.Context, applicationKey,
108108
}
109109

110110
func (vs *versionService) UpdateAppVersion(ctx service.Context, applicationKey string, version string, request *model.UpdateAppVersionRequest) error {
111-
endpoint := fmt.Sprintf("/v1/applications/%s/versions/%s?async=false", applicationKey, version)
111+
endpoint := fmt.Sprintf("/v1/applications/%s/versions/%s", applicationKey, version)
112112
response, responseBody, err := ctx.GetHttpClient().Patch(endpoint, request)
113113
if err != nil {
114114
return err

0 commit comments

Comments
 (0)