diff options
author | Pascal Terjan <pterjan@gmail.com> | 2016-11-08 11:46:52 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@gmail.com> | 2016-11-08 11:46:52 +0000 |
commit | f62c6409edf667172b28f327cb99b321e1d054ae (patch) | |
tree | 6b0b969927273f95ec8b4d621767031afcc04bc6 | |
parent | dfb88516cccc68652607c4f6564a6b5e80ae27c6 (diff) | |
download | iurt-f62c6409edf667172b28f327cb99b321e1d054ae.tar iurt-f62c6409edf667172b28f327cb99b321e1d054ae.tar.gz iurt-f62c6409edf667172b28f327cb99b321e1d054ae.tar.bz2 iurt-f62c6409edf667172b28f327cb99b321e1d054ae.tar.xz iurt-f62c6409edf667172b28f327cb99b321e1d054ae.zip |
Have consistent ordering for queue status
-rwxr-xr-x | ulri | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -574,7 +574,7 @@ if (keys %build_list) { } plog('INFO', "jobs in queue:", %to_compile ? - map { sprintf("%s(%d)", $_, $to_compile{$_}) } keys %to_compile : "none"); + map { sprintf("%s(%d)", $_, $to_compile{$_}) } sort keys %to_compile : "none"); unlink $pidfile; |