We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72780aa commit bfd20d2Copy full SHA for bfd20d2
eng/common/scripts/Create-APIReview.ps1
@@ -140,7 +140,9 @@ if ($packages)
140
else
141
{
142
# Return error code if status code is 201 for new data plane package
143
- if ($pkgInfo.SdkType -eq "client" -and $pkgInfo.IsNewSdk)
+ # Temporarily enable API review for spring SDK types. Ideally this should be done be using 'IsReviewRequired' method in language side
144
+ # to override default check of SDK type client
145
+ if (($pkgInfo.SdkType -eq "client" -or $pkgInfo.SdkType -eq "spring") -and $pkgInfo.IsNewSdk)
146
147
if ($respCode -eq '201')
148
0 commit comments