summaryrefslogtreecommitdiffstats
path: root/lava-master/lava-patch
diff options
context:
space:
mode:
Diffstat (limited to 'lava-master/lava-patch')
-rw-r--r--lava-master/lava-patch/0001-scheduler.jobs.show-fix-missing-value-after-2019.09.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/lava-master/lava-patch/0001-scheduler.jobs.show-fix-missing-value-after-2019.09.patch b/lava-master/lava-patch/0001-scheduler.jobs.show-fix-missing-value-after-2019.09.patch
deleted file mode 100644
index 093996d..0000000
--- a/lava-master/lava-patch/0001-scheduler.jobs.show-fix-missing-value-after-2019.09.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff --git a/lava_scheduler_app/api/jobs.py b/lava_scheduler_app/api/jobs.py
-index 7c9e2cd52..5aba8d88b 100644
---- a/lava_scheduler_app/api/jobs.py
-+++ b/lava_scheduler_app/api/jobs.py
-@@ -395,6 +395,12 @@ class SchedulerJobsAPI(ExposedV2API):
- device_type = None
- if job.requested_device_type is not None:
- device_type = job.requested_device_type.name
-+ if job.is_public:
-+ visibility = "Public"
-+ else:
-+ visibility = "Private (%s)" % ", ".join(
-+ [g.name for g in job.viewing_groups.all()]
-+ )
-
- return {
- "id": job.display_id,
-@@ -410,6 +416,7 @@ class SchedulerJobsAPI(ExposedV2API):
- "start_time": job.start_time,
- "end_time": job.end_time,
- "tags": [t.name for t in job.tags.all()],
-+ "visibility": visibility,
- "failure_comment": job.failure_comment,
- }
-