Skip to content

Commit 1dee59f

Browse files
Merge pull request #3200 from antgonza/2022.05
2022.05
2 parents 874b993 + 5e89b95 commit 1dee59f

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

Diff for: CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Qiita changelog
22

3+
Version 2022.05
4+
-----------------
5+
6+
* Added `Artifact.iter()` for easier Artifact interactions.
7+
* Fixed the SCP Qiita transfer; [this was the problem and solution](https://github.com/paramiko/paramiko/issues/1961).
8+
* Added `User.email` to the Admin Job Processing listing.
9+
310
Version 2022.04
411
---------------
512

Diff for: qiita_pet/handlers/admin_processing_job.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ def get(self):
8080

8181
jobs.append([job.id, job.command.name, job.status, msg,
8282
outputs, validator_jobs, heartbeat,
83-
job.parameters.values, job.external_id])
83+
job.parameters.values, job.external_id,
84+
job.user.email])
8485
results = {
8586
"sEcho": echo,
8687
"recordsTotal": len(jobs),

Diff for: qiita_pet/templates/admin_processing_job.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272

7373
//row[8] is PBS/Torque/Slurm id
7474
out.push('<b class="' + statusToClass[status] + '">' + status + ' ' +
75-
row[0] + ' ' + '</b> ');
75+
row[0] + ' </b> [ ' + row[9] + ' ]</br>');
7676

7777
if (status === 'running' || status === 'queued') {
7878
// row[0] is qiita job-id

0 commit comments

Comments
 (0)