From b1eda324c6de454cf7d63aed74d8b0a43db85524 Mon Sep 17 00:00:00 2001 From: Chelsea Holland Komlo Date: Wed, 6 Dec 2017 16:37:47 -0500 Subject: [PATCH] code review fixups --- command/agent/job_endpoint_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/command/agent/job_endpoint_test.go b/command/agent/job_endpoint_test.go index 8ad407603..8eb74a9b9 100644 --- a/command/agent/job_endpoint_test.go +++ b/command/agent/job_endpoint_test.go @@ -1260,6 +1260,7 @@ func TestJobs_ApiJobToStructsJob(t *testing.T) { "lol": "code", }, KillTimeout: helper.TimeToPtr(10 * time.Second), + KillSignal: "SIGQUIT", LogConfig: &api.LogConfig{ MaxFiles: helper.IntToPtr(10), MaxFileSizeMB: helper.IntToPtr(100), @@ -1455,6 +1456,7 @@ func TestJobs_ApiJobToStructsJob(t *testing.T) { "lol": "code", }, KillTimeout: 10 * time.Second, + KillSignal: "SIGQUIT", LogConfig: &structs.LogConfig{ MaxFiles: 10, MaxFileSizeMB: 100,