From 2cd9f5ea4d6a97a06c9d4698a1cd542b323a5bbc Mon Sep 17 00:00:00 2001 From: Bel LaPointe Date: Tue, 28 Sep 2021 10:35:42 -0600 Subject: [PATCH] dont provide lastoutput by default --- server/job.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/job.go b/server/job.go index 7e6c35a..35eed43 100755 --- a/server/job.go +++ b/server/job.go @@ -23,8 +23,8 @@ func toMap(j *scheduler.Job) map[string]interface{} { out["last"] = map[string]interface{}{ "run": j.LastRun.In(tz).Format(`2006-01-02 15:04:05 MST`), "runtime": j.LastRuntime.String(), - "output": j.LastOutput, - "status": j.LastStatus, + //"output": j.LastOutput, + "status": j.LastStatus, } return out }