Skip to content

Commit

Permalink
Merge pull request #2309 from microsoft/hanli/fix-webapp-deployment
Browse files Browse the repository at this point in the history
Fix one deploy may be skipped as we only get the WebSiteBasic instance
  • Loading branch information
wangmingliang-ms authored Jun 15, 2023
2 parents 54e86a5 + da88132 commit 570830e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void deploy(@Nonnull DeployType deployType, @Nonnull File targetFile,
@Nullable
public KuduDeploymentResult pushDeploy(@Nonnull DeployType deployType, @Nonnull File targetFile,
@Nullable DeployOptions deployOptions) {
final WebSiteBase remote = this.getRemote();
final WebSiteBase remote = this.getFullRemote();
if (remote instanceof SupportsOneDeploy) {
final com.azure.resourcemanager.appservice.models.DeployOptions options =
deployOptions == null ? null : AppServiceUtils.toDeployOptions(deployOptions);
Expand Down

0 comments on commit 570830e

Please sign in to comment.