From 4f8fd14d7f91349908024992783721bdcc1428c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 31 May 2022 10:36:47 +0200 Subject: [PATCH] OAPI: remove `last_activity` field from RegisteredWorker A task's "activity" field is a string that describes the last-performed operation on the task. In Flamenco 2, a Worker's "last activity" is the timestamp at which it was last seen. Using the same term for different things is confusing, and thus gets removed until the Worker's "last seen" functionality is reimplemented. --- pkg/api/flamenco-openapi.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/api/flamenco-openapi.yaml b/pkg/api/flamenco-openapi.yaml index dc0736c0..52ac2f42 100644 --- a/pkg/api/flamenco-openapi.yaml +++ b/pkg/api/flamenco-openapi.yaml @@ -716,7 +716,6 @@ components: address: { type: string } status: { $ref: "#/components/schemas/WorkerStatus" } platform: { type: string } - last_activity: { type: string } software: { type: string } supported_task_types: type: array @@ -728,7 +727,6 @@ components: - status - platform - current_task - - last_activity - software - supported_task_types