Francois Gouget : testbot/web: The task failures list is read-only.
Module: tools Branch: master Commit: 1144330df953c8dbcb2a838aaa927a24a7703d8e URL: https://source.winehq.org/git/tools.git/?a=commit;h=1144330df953c8dbcb2a838a... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Fri Jun 24 16:26:26 2022 +0200 testbot/web: The task failures list is read-only. Manually adding and removing task failures is not supported. Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- testbot/web/FailureDetails.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testbot/web/FailureDetails.pl b/testbot/web/FailureDetails.pl index f39af5ac..ae4ccb40 100644 --- a/testbot/web/FailureDetails.pl +++ b/testbot/web/FailureDetails.pl @@ -167,7 +167,7 @@ sub GenerateBody($) { print "<h2><a name='TaskFailures'></a>Task Failures</h2>\n"; my $TaskFailuresBlock = new TaskFailuresBlock($self->{Item}->TaskFailures, $self); - $TaskFailuresBlock->SetReadWrite(0) if (!$self->{RW}); + $TaskFailuresBlock->SetReadWrite(0); $TaskFailuresBlock->GenerateList(); } }
participants (1)
-
Alexandre Julliard