Skip to content

Commit

Permalink
Merge pull request #1504 from Hazhzeng/hazeng-pr6-erroronnotfound
Browse files Browse the repository at this point in the history
Update remote build unavailable warning text change
  • Loading branch information
ankitkumarr authored Aug 16, 2019
2 parents c8c912d + c21983c commit f6f2809
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -637,8 +637,8 @@ public async Task<DeployStatus> PerformServerSideBuild(Site functionApp, Func<Ta
{
if (string.IsNullOrEmpty(functionApp.ScmUri))
{
throw new CliException($"Your function app {functionApp.SiteName} does not support remote build. " +
"To enable remote build, please update your function app to the latest verison by recreating it.");
throw new CliException("Remote build is a new feature added to function apps. " +
$"Your function app {functionApp.SiteName} does not support remote build as it was created before August 1st, 2019.");
}

using (var handler = new ProgressMessageHandler(new HttpClientHandler()))
Expand Down

0 comments on commit f6f2809

Please sign in to comment.