Skip to content

Commit

Permalink
update warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisRumyantsev committed Oct 6, 2023
1 parent 656874b commit d8eff9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Agent.Worker/TaskManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ private void CheckTaskDeprecation(IExecutionContext executionContext, Pipelines.
if (removalDate != null)
{
string removalDateString = removalDate.Value<DateTime>().ToString("MMMM d, yyyy");
deprecationMessage += $" and may not be available after {removalDateString}";
deprecationMessage += $" and will be removed. From {removalDateString} onwards it may no longer be available";
var helpUrl = taskJson["helpUrl"];

if (helpUrl != null)
Expand Down

0 comments on commit d8eff9e

Please sign in to comment.