12 lines
167 B
Plaintext
12 lines
167 B
Plaintext
![]() |
[source,csharp]
|
||
|
----
|
||
|
public string GetReadableStatus(Job j)
|
||
|
{
|
||
|
if (j.IsRunning)
|
||
|
{
|
||
|
return "Running";
|
||
|
}
|
||
|
return j.HasErrors ? "Failed" : "Succeeded";
|
||
|
}
|
||
|
----
|