From 652df47c5c65e72368ab1c5c6dc9f99554430b83 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 24 May 2024 17:05:18 +0200 Subject: [PATCH] fix: sentry issue --- app/Models/Service.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Service.php b/app/Models/Service.php index 252f56608..9bd4a0cdc 100644 --- a/app/Models/Service.php +++ b/app/Models/Service.php @@ -659,7 +659,7 @@ class Service extends BaseModel return route('project.service.scheduled-tasks', [ 'project_uuid' => data_get($this, 'environment.project.uuid'), 'environment_name' => data_get($this, 'environment.name'), - 'application_uuid' => data_get($this, 'uuid'), + 'service_uuid' => data_get($this, 'uuid'), 'task_uuid' => $task_uuid ]); }