From 77f84ccf56940d9889b568a181f7f0f6c9720713 Mon Sep 17 00:00:00 2001 From: Konrad Hanff Date: Thu, 6 May 2021 10:28:59 +0200 Subject: [PATCH] Fix execute response --- api/dto/dto.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/dto/dto.go b/api/dto/dto.go index 7082690..989a51e 100644 --- a/api/dto/dto.go +++ b/api/dto/dto.go @@ -20,7 +20,7 @@ type RunnerResponse struct { // WebsocketResponse is the expected response when creating an execution for a runner. type WebsocketResponse struct { - WebsocketUrl string + WebsocketUrl string `json:"websocketUrl"` } // ClientError is the response interface if the request is not valid.